I have GridView and this grid has setup paging, but this paging not show up… How can I fix it?
<asp:ObjectDataSource ID="odsUzivatele" runat="server" SelectMethod="VratUzivatele"
TypeName="ManagerUzivateleAdapter"></asp:ObjectDataSource>
<asp:GridView ID="gwUzivatele" runat="server"
DataSourceID="odsUzivatele" onrowdatabound="gwUzivatele_RowDataBound"
AllowPaging="True" PageSize="5" EnableModelValidation="True">
</asp:GridView>
Problem was in RowDataBound event, I show down first (index 0) cell… After remove this event, paging show up….
Thank for reply. 🙂