Hi,
I have a RadGrid with a nested GridTableView (detail table). In my detail table I've specified a RadComboBox as one of the columns like this:
<telerik:ComboBox ID="tcbCompanyType" runat="server" DataTextField="Text" DataValueField="Value"
EmptyMessage="Company type" MarkFirstMatch="True" AutoPostBack="True"
CausesValidation="false" onselectedindexchanged="tcbCompanyType_SelectedIndexChanged" />
As expected, on changing the selection, the appropriate method is called; but I need this method to show/hide other columns in the same detail table - my other columns are all of type <telerik:GridBoundColumn>. The columns to be shown/hidden all have unique names defined for them but no IDs.
Thanks for looking :)
I have a RadGrid with a nested GridTableView (detail table). In my detail table I've specified a RadComboBox as one of the columns like this:
<telerik:ComboBox ID="tcbCompanyType" runat="server" DataTextField="Text" DataValueField="Value"
EmptyMessage="Company type" MarkFirstMatch="True" AutoPostBack="True"
CausesValidation="false" onselectedindexchanged="tcbCompanyType_SelectedIndexChanged" />
As expected, on changing the selection, the appropriate method is called; but I need this method to show/hide other columns in the same detail table - my other columns are all of type <telerik:GridBoundColumn>. The columns to be shown/hidden all have unique names defined for them but no IDs.
Thanks for looking :)