How can i set the combo from client side.?
The way i do it now is
on Client side i pass value using hidden inputs to server side than i call ajaxRequest
The way i do it now is
on Client side i pass value using hidden inputs to server side than i call ajaxRequest
j_inComboText.value = Description;
j_inComboVal.value = StatusId;
$find(
"<%= RadAjaxManager1.ClientID %>").ajaxRequest();
On server side i implement
if (rcbStatus.SelectedIndex == 0)
rcbStatus.Items.Remove(0);
RadComboBoxItem ps = new RadComboBoxItem();
ps.Text = inComboText.value ;
ps.Value = inComboVal.Value ;
rcbStatus.Items.Insert(0, ps);
rcbStatus.SelectedIndex = 0;
It shows that my value is set ok in the combo but not refresh it to appear in the header of the combo?