I currently have a javascrpt page load event shown below:
I need to add code to this pagLoad function to check if any child grid is expanded. If they are I need to change the following RadioButtonList (shown below) to "Yes"; else "No":
How can I accomplish this?
Thanks
I no longer need this question answered. I'm not sure how to "close" this post.
function pageLoad(sender, args) { $find('<%=RadGrid1.ClientID %>').get_masterTableView().hideFilterItem();}I need to add code to this pagLoad function to check if any child grid is expanded. If they are I need to change the following RadioButtonList (shown below) to "Yes"; else "No":
<asp:RadioButtonList runat="server" ID="rbExpand" AutoPostBack="true" RepeatDirection="Horizontal" onselectedindexchanged="rbExpand_SelectedIndexChanged" visible="false" > <asp:ListItem Text="Yes"></asp:ListItem> <asp:ListItem Text="No" Selected="True"></asp:ListItem></asp:RadioButtonList>How can I accomplish this?
Thanks
I no longer need this question answered. I'm not sure how to "close" this post.