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
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: