Skip to content

Invalid input highlighting in error #85

Open
@chris904apps

Description

@chris904apps

I have a select list that has folder directories in it and it is showing that my value is incorrect when it is initially set by server. It looks like the following line need to be updated:

var $selected = $select.children('[value="' + value + '"]');

inside of the setValue function to:

var $selected = $select.find('option').filter(function() {
return this.value == value;
});
and then i think it will be able to find it correctly.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions