2009.3.1210.35
I have CommandItem button on RadGrid that when selected, I would like to set the cboReport's index to -1.
I noticed that cboReport wasn't updating the value, so I added the RadGrid1 to cboReport in AjaxMgr. When I did this, cboReport no longer does postback when a new item is selected. RadGrid1 also doesn't change the text of the cboReport either.
I have CommandItem button on RadGrid that when selected, I would like to set the cboReport's index to -1.
I noticed that cboReport wasn't updating the value, so I added the RadGrid1 to cboReport in AjaxMgr. When I did this, cboReport no longer does postback when a new item is selected. RadGrid1 also doesn't change the text of the cboReport either.
| <telerik:RadComboBox ID="cboReport" EmptyMessage="Select a report" runat="server" Skin="Simple" |
| width="260px" AutoPostBack="true" Filter="Contains" MarkFirstMatch="true" AllowCustomText="false" NoWrap="true"> |
| <Items> |
| <telerik:RadComboBoxItem Text="" Value="" /> |
| </Items> |
| </telerik:RadComboBox> |
| <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="RadGrid1"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="RadGrid1" LoadingPanelID="RadAjaxLoadingPanel1"/> |
| <telerik:AjaxUpdatedControl ControlID="cboReport" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |