I have used telerik rad grid client-side programmatic binding. Binding is working fine but the nested view template expand image button is not displaying with more than 10 records. I am adding user control dynamically to that nested view template.
Thanks in advance.
<telerik:RadGrid ID="rgInvoiceDetails" runat="server" GridLines="None" AllowSorting="false" AutoGenerateColumns="False" CellSpacing="0"> <ClientSettings> <ClientEvents OnCommand="rgInvoiceDetails_Command" OnHierarchyExpanding="rgInvoiceDetails_HierarchyExpanding" OnRowDataBound="rgInvoiceDetails_RowDataBound" /> </ClientSettings> <MasterTableView ClientDataKeyNames="FeeChassisInvoiceDetailID,Disputed" CommandItemDisplay="Top" Width="100%" HierarchyLoadMode="Client"> <Columns> <telerik:GridBoundColumn DataField="ChassisNumber" HeaderText="Chassis" /> <telerik:GridBoundColumn DataField="BillFromDate" HeaderText="Out Gate" DataFormatString="{0:d}" /> <telerik:GridBoundColumn DataField="BillToDate" HeaderText="In Gate" DataFormatString="{0:d}" /> <telerik:GridBoundColumn DataField="BillDays" HeaderText="Days" /> <telerik:GridBoundColumn DataField="Rate" HeaderText="Rate" DataType="System.Decimal" DataFormatString="{0:c}" /> <telerik:GridBoundColumn DataField="FeeAmount" HeaderText="Total" DataType="System.Decimal" DataFormatString="{0:c}" /> <telerik:GridBoundColumn DataField="Disputed" HeaderText="" ItemStyle-CssClass="MyCustomHeaderClass" /> </Columns> <NestedViewTemplate> </NestedViewTemplate><HeaderStyle CssClass="MyCustomHeaderClass" /> </MasterTableView> </telerik:RadGrid>Thanks in advance.