Skip to content
This repository was archived by the owner on Feb 17, 2026. It is now read-only.
This repository was archived by the owner on Feb 17, 2026. It is now read-only.

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

@cao825

Description

@cao825

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$$="";}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions