Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IE9/10 ddl issue: SCRIPT5007: Unable to get property 'value' of undefined or null reference table.filter.min.js, line 122 character 406 #66

Open
cao825 opened this issue May 10, 2013 · 0 comments

Comments

@cao825
Copy link

cao825 commented May 10, 2013

This issue only occurs in certain cases of IE9 and IE10 where drop down lists are used on a filter table.

The line of code in question is:

case "select-one":$value$$70$$=0===$filter$$2$$.selectedIndex?$JSCompiler_alias_NULL$$:$filter$$2$$.options[$filter$$2$$.selectedIndex].value;

I was able to resolve the issue by change the line of code to this:

case "select-one":if($filter$$2$$.selectedIndex!==-1){$value$$70$$=0===$filter$$2$$.selectedIndex?$JSCompiler_alias_NULL$$:$filter$$2$$.options[$filter$$2$$.selectedIndex].value;}else{$value$$70$$="";}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant