This is a migrated thread and some comments may be shown as answers.

RadGrid DetailedTable and Jquery Tabs

1 Answer 77 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Sam
Top achievements
Rank 1
Sam asked on 14 Dec 2012, 11:24 AM

I have a radgrid inside one of my tabs which is a Jquery tabs.

The gird has children which I am binding from code behind using OnDetailTableDataBind event.

Now this works perfectly find on normal asp.net page, but on Jquery tabs it doesn't expand/collapse. Have searched google too but didn't find suitable solution.

here is my grid html code and the code behind just binds it to a datatable.

<telerik:RadGrid ID="gvDate" runat="server" ShowGroupPanel="false" PagerStyle-Mode="NextPrev"
                    AutoGenerateColumns="false" PageSize="10" AllowPaging="false" EnableViewState="true"
                    AlternatingItemStyle-BackColor="AliceBlue"
                    OnDetailTableDataBind="RadGrid1_DetailTableDataBind">
                     <clientsettings AllowGroupExpandCollapse="true">
 
                     </clientsettings>
     <MasterTableView ClientDataKeyNames="ID" DataKeyNames="ID" HierarchyLoadMode="ServerBind" GroupLoadMode="Client"
                        HierarchyDefaultExpanded="false">
                        <Columns>
     <telerik:GridBoundColumn HeaderText="ID" DataField="ID" Visible="False" UniqueName="ID" />
      <telerik:GridBoundColumn DataField="Led" HeaderText="Led" />
</Columns>
                        <DetailTables>
                            <telerik:GridTableView>
                                <Columns>
                                    <telerik:GridBoundColumn HeaderText="ID" DataField="ID" Visible="False" UniqueName="ID" />
                                    <telerik:GridBoundColumn DataField="Date" HeaderText="Date" />
</Columns>
                            </telerik:GridTableView>
                        </DetailTables>
                    </MasterTableView>
                </telerik:RadGrid>

1 Answer, 1 is accepted

Sort by
0
Eyup
Telerik team
answered on 19 Dec 2012, 11:18 AM
Hello Sam,

It is difficult to determine the exact cause of the issue by the provided information so far. Please open a support ticket to send us a sample runnable application demonstrating the problematic behavior or provide us the exact steps to reproduce the issue. Thus, we will be able to further analyze the issue and suggest a proper solution.

Regards,
Eyup
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Grid
Asked by
Sam
Top achievements
Rank 1
Answers by
Eyup
Telerik team
Share this question
or