Skip to content

Instantly share code, notes, and snippets.

@cceremuga
Created March 20, 2013 12:42
Show Gist options
  • Save cceremuga/5204350 to your computer and use it in GitHub Desktop.
Save cceremuga/5204350 to your computer and use it in GitHub Desktop.
ASP:DataPager control settings to work perfectly w/ the Bootstrap single button group
<asp:DataPager ID="DataPagerProducts" runat="server" PagedControlID="LvCategoryItems" PageSize="10" OnPreRender="PagerCategoryItems_PreRender" class="btn-group pager-buttons">
<Fields>
<asp:NextPreviousPagerField ShowLastPageButton="False" ShowNextPageButton="False" ButtonType="Button" ButtonCssClass="btn" RenderNonBreakingSpacesBetweenControls="false" />
<asp:NumericPagerField ButtonType="Button" RenderNonBreakingSpacesBetweenControls="false" NumericButtonCssClass="btn" CurrentPageLabelCssClass="btn disabled" NextPreviousButtonCssClass="btn" />
<asp:NextPreviousPagerField ShowFirstPageButton="False" ShowPreviousPageButton="False" ButtonType="Button" ButtonCssClass="btn" RenderNonBreakingSpacesBetweenControls="false" />
</Fields>
</asp:DataPager>
@time-wcrp
Copy link

Many thanks.

@MikeMurpher
Copy link

Sweet

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment