3 Answers, 1 is accepted
0
Hello Riccardo,
Please, review the following useful topics:
http://docs.telerik.com/devtools/aspnet-ajax/controls/grid/functionality/paging/changing-the-default-pager/programmatic-pager-customization and http://docs.telerik.com/devtools/aspnet-ajax/controls/grid/appearance-and-styling/customizing-the-pager#pager-templates.
Best regards,
Rumen
Telerik by Progress
Try our brand new, jQuery-free Angular 2 components built from ground-up which
deliver the business app essential building blocks - a grid component,
data visualization (charts) and form elements.
0
0
Hello Riccardo,
The solution provided in the Pager Template article works fine with RadButton components in the template:
<
MasterTableView
AutoGenerateColumns
=
"false"
TableLayout
=
"Fixed"
CommandItemDisplay
=
"Top"
>
<
PagerTemplate
>
<
table
border
=
"0"
cellpadding
=
"5"
height
=
"18px"
width
=
"100%"
>
<
tr
>
<
td
style
=
"border-style: none;"
>
<
telerik:RadButton
ID
=
"LinkButton1"
CommandName
=
"Page"
CausesValidation
=
"false"
CommandArgument
=
"First"
runat
=
"server"
Text
=
"First"
></
telerik:RadButton
>
</
td
>
<
td
style
=
"border-style: none;"
>
<
telerik:RadButton
ID
=
"LinkButton5"
CommandName
=
"Page"
CausesValidation
=
"false"
CommandArgument
=
"Prev"
runat
=
"server"
Text
=
"Prev"
></
telerik:RadButton
>
</
td
>
<
td
style
=
"border-style: none;"
>
<
asp:TextBox
ID
=
"tbPageNumber"
runat
=
"server"
Columns
=
"3"
/>
</
td
>
<
td
style
=
"border-style: none;"
>
<
asp:LinkButton
ID
=
"LinkButton4"
runat
=
"server"
CommandName
=
"CustomChangePage"
>Go</
asp:LinkButton
>
</
td
>
<
td
style
=
"border-style: none;"
>
<
asp:LinkButton
ID
=
"LinkButton3"
CommandName
=
"Page"
CausesValidation
=
"false"
CommandArgument
=
"Next"
runat
=
"server"
>Next</
asp:LinkButton
>
</
td
>
<
td
style
=
"border-style: none;"
>
<
asp:LinkButton
ID
=
"LinkButton2"
CommandName
=
"Page"
CausesValidation
=
"false"
CommandArgument
=
"Last"
runat
=
"server"
>Last</
asp:LinkButton
>
</
td
>
<
td
style
=
"border-style: none; width: 100%"
align
=
"right"
>
<
asp:LinkButton
ID
=
"LinkButton6"
CommandName
=
"RebindGrid"
CausesValidation
=
"false"
runat
=
"server"
>Refresh data</
asp:LinkButton
>
</
td
>
</
tr
>
</
table
>
</
PagerTemplate
>
Best regards, Rumen
Telerik by Progress
Try our brand new, jQuery-free Angular 2 components built from ground-up which
deliver the business app essential building blocks - a grid component,
data visualization (charts) and form elements.