hello, everyone
I am using a NestedViewTemplate to dispay hierarchy structure of data in the Gridview. it's working well except too slow for large dataset even with paging.
Is it possible to load the detail data on server side on demand?
I cann't declare the relationship like showed in the samples since the grid is quite generic.
Is it possible to postback to server when the user try to expand the parent row and populated the nested data on demand?
the partial codes look like:
<MasterTableView>
<NestedViewTemplate>
<fieldset>
<asp:GridView id="detail" runat="server" AutoGenerateColumns="true"></asp:GridView>
</fieldset>
</NestedViewTemplate>
Thanks a lot for your help!
haiwen