grid第一页不能加载头 翻页后就正常显示 如下图:加载第一页,表头不显示
翻页后,正常了。
然后 回到第一页,第一页也正常了。这是什么原因?
一下是代码:
<f:Grid runat="server" ID="gridNation" ShowBorder="true" ShowHeader="false" AutoScroll="true"
AllowPaging="true" PageSize="12" Title="民族管理" Height="398px" DataKeyNames="NationID"
EnableCheckBoxSelect="true" EnableTextSelection="true" ClearSelectedRowsAfterPaging="false"
EnableAlternateRowColor="true" EnableMouseOverColor="true" ForceFit="true">
<Columns>
<f:BoundField Width="30px" DataField="NationID" HeaderText="ID" Hidden="true" />
<f:BoundField Width="150px" DataField="NationName" HeaderText="民族名称" ExpandUnusedSpace="true" />
<f:WindowField ColumnID="winAddNation" Width="50px" ToolTip="编辑" HeaderText="编辑"
WindowID="winAddNation" Icon="TableEdit" DataTextFormatString="{0}" DataIFrameUrlFormatString="AddNation.aspx?Id={0}"
DataIFrameUrlFields="NationID" DataWindowTitleField="NationName" DataWindowTitleFormatString="编辑-{0}" />
</Columns>
</f:Grid> |