Hi Telerik,
We have a grid with an ItemTemplate code that contains a RadComboBox
<
telerik:RadComboBox
runat
=
"server"
ID
=
"RadComboBoxEventNotAttending"
Width
=
"155px"
CheckBoxes
=
"true"
DropDownAutoWidth
=
"Enabled"
AutoPostBack
=
"true"
EmptyMessage
=
"Select Not Attending"
EnableCheckAllItemsCheckBox
=
"true"
OnItemChecked
=
"RadComboBoxEventNotAttending_ItemChecked"
OnCheckAllCheck
=
"RadComboBoxEventNotAttending_CheckAllCheck"
OnDataBinding
=
"RadComboBoxEventNotAttending_DataBinding"
Label='<%# Eval("EventSubId")%>' LabelCssClass="myLabelHide" >
<
Localization
AllItemsCheckedString
=
"Family not attending"
CheckAllString
=
"Select All"
ItemsCheckedString
=
"Member(s) not attending"
/>
<
CollapseAnimation
Type
=
"InExpo"
/>
<
ExpandAnimation
Type
=
"OutExpo"
/>
<
HeaderTemplate
>
<
asp:Label
runat
=
"server"
Font-Size
=
"8"
Text
=
"Not Attending"
/>
</
HeaderTemplate
>
</
telerik:RadComboBox
>
Every Item for the grid could have different drop down items and checks for their respective repeating RadComboBoxes depending on the scenario, which is all handled fine with the OnDataBinding for each record in the grid datasource. When the user checks an item in the dropdown it does a whole postback for the grid. We would like it to only do a postback for the RadComboBox and show a LoadingPanel around the RadComboBox itself instead of showing around the grid.
Our grid is wrapped in a ASP Panel and is used in the RadAjaxManager. The RadComboBox could be wrapped in a ASP Panel and used the same way. We are not sure this is possible for it to be used inside a grid like this.
Could you supply some information or some code snippet for this type of situation?
Thanks!!!