Title: combo boxes not selected when form loads Post by: devnull on June 22, 2014, 04:03:16 PM I have some forms that have many combo boxes, when the form is loaded, although the value of the combobox is set, the related option in the combo list is not selected as it would be if it was a default html select element.
can the form load method be modified so that as well as setting a combo value, it also selects the option record in it's list. Thanks Title: Re: combo boxes not selected when form loads Post by: jarry on June 22, 2014, 06:31:05 PM When calling 'load' method to load form combobox, the 'setValue' method of combobox will be called to set the combobox with new value, the related item of drop-down will be selected too.
Please see this example http://jsfiddle.net/YBhB9/. |