Hi,
1) I have a form with two dropdowns lists (select1,select2). If i select one item in the list (select1) the focus is pointing the selected item. Its fine .
2) but if go to the next list (select2) and select any item and come back to select1 list then click the dropdown then its not showing any focus on the selected item.
Here is the sample code:
isc.DynamicForm.create({
ID:"form1",
fields:[
{editorType:"select", valueMap:["a","b","c"], name:"select1"},
{editorType:"select", valueMap:["1","2","3"], name:"select2"}
]
})
I want to get focus to the selected items.
Thanks in advance.
1) I have a form with two dropdowns lists (select1,select2). If i select one item in the list (select1) the focus is pointing the selected item. Its fine .
2) but if go to the next list (select2) and select any item and come back to select1 list then click the dropdown then its not showing any focus on the selected item.
Here is the sample code:
isc.DynamicForm.create({
ID:"form1",
fields:[
{editorType:"select", valueMap:["a","b","c"], name:"select1"},
{editorType:"select", valueMap:["1","2","3"], name:"select2"}
]
})
I want to get focus to the selected items.
Thanks in advance.
Comment