You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 17, 2026. It is now read-only.
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$$="";}
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$$="";}