Hi, i search in the forum and i had see that is a comune problem but following the instrunction doesn't work
Posting you some code
protected void rgrOrdEvo_DetailTableDataBind(object source, GridDetailTableDataBindEventArgs e) |
{ |
e.DetailTableView.DataSource = dettaglio; |
} |
protected void rgrOrdEvo_NeedDataSource(object source, GridNeedDataSourceEventArgs e) |
{ |
if (!e.IsFromDetailTable) |
{ |
rgrOrdEvo.DataSource = this.DS(); |
} |
} |
} |
<telerik:RadGrid ID="rgrOrdEvo" runat="server" |
GridLines="None" AllowPaging="true" PageSize="15" |
ondetailtabledatabind="rgrOrdEvo_DetailTableDataBind" |
AutoGenerateHierarchy="true" Skin="Hay" |
onitemdatabound="rgrOrdEvo_ItemDataBound" |
onneeddatasource="rgrOrdEvo_NeedDataSource"> |
<PagerStyle Mode="NextPrevNumericAndAdvanced" /> |
<ClientSettings> |
<Selecting AllowRowSelect="true"/> |
</ClientSettings> |
<MasterTableView DataKeyNames="ORT.OTNUOR" TableLayout="Fixed" GroupLoadMode="Client"> |
<DetailTables> |
<telerik:GridTableView TableLayout="Fixed" GroupLoadMode="Client" EnableViewState="true"> |
how can i stop this disappear/show of the grid when i expand
thank you