Hello,
In the codebehind we disabled the ComboBox and set a selected item. Via JavaScript we want to change the selected item via:
But it didn't succeed. The already selected item (from the codebehind) remains unchanged. What are we doing wrong?
With friendly greetings,
Pieter
From The Netherlands
In the codebehind we disabled the ComboBox and set a selected item. Via JavaScript we want to change the selected item via:
function winDialogCallbackControleren(radWindow, returnValue) { |
if (returnValue != "-1") { |
var combobox = $find("<%=rcbDocumentStatus.ClientID %>"); |
var item = combobox.findItemByValue(returnValue); |
if (item) { |
item.select(); |
} |
} |
} |
With friendly greetings,
Pieter
From The Netherlands