Anyone care to tell me what I am missing? I tried everything I could find and still cannot get the empty grid to show with my no records template. I just get a small line where headers should be. Everything displays fine when data is in grid.
| <telerik:RadGrid ID="RadGrid1" runat="server" DataSourceID="SqlDataSource1"> |
| <MasterTableView DataSourceID="SqlDataSource1" ShowHeadersWhenNoRecords="true"> |
| <NoRecordsTemplate> |
| No positions are currently listed, please check back at a later time. |
| </NoRecordsTemplate> |
| <RowIndicatorColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </RowIndicatorColumn> |
| <ExpandCollapseColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </ExpandCollapseColumn> |
| <Columns> |
| <telerik:GridBoundColumn DataField="employment_id" |
| HeaderText="..." UniqueName="column"> |
| </telerik:GridBoundColumn> |
| </Columns> |
| </MasterTableView> |
| <FilterMenu EnableTheming="True"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| </FilterMenu> |
| </telerik:RadGrid> |