-
Notifications
You must be signed in to change notification settings - Fork 1
insertOption
jdubs edited this page Oct 23, 2016
·
1 revision
This function inserts a new option in a SELECT list at the specific index location.
insertOption(index, text[,][,])
( index ) The location to insert the new option. The items count begins at 0. ( text ) The display text associated with the option. ( value ) Optional. The value associated with the option. If omitted, value will be the same as text. ( selected ) Optional. A boolean representing whether the new item becomes the currently selected item in the SELECT list.
spec['SelectList'].insertOption(2, 'New Item', '123456', false);