Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1490
editors with drop downs within igGrid cells don't honor all options set
posted

I have an editor in a grid declared in MVC code but then updated on the client side via javascript. The options I'm setting from javascript don't seem to be honored. I set the following in BLOCKED SCRIPT 

$(ui.editor).igEditor("option", "buttonHidden", false);

        $(ui.editor).igEditor("option", "listItems", _advancedCriteria_ResponseData.OperandList);

        $(ui.editor).igEditor("option", "listAutoComplete", false);

        $(ui.editor).igEditor("option", "listMatchContains", true);

        $(ui.editor).igEditor("option", "listMatchOnly", true);

However, the "listMatchContains", and "listMatchOnly" flags are not honored. Typing a value in the drop down doesn't even cause the control to drop down the values (even though they exist in list). 

Is there something I am doing wrong? 

Parents Reply Children