5 Answers, 1 is accepted
0
Hello Dmytro,
You can use Kendo.Mvc.UI.Fluent.PageableBuilder. For example:
I hope this information will help.
Regards,
Alexander Valchev
Telerik
You can use Kendo.Mvc.UI.Fluent.PageableBuilder. For example:
.Pageable(pager => pager.Refresh(
true
).Numeric(
false
))
I hope this information will help.
Regards,
Alexander Valchev
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0

Dmytro
Top achievements
Rank 1
answered on 09 Sep 2013, 06:21 PM
I need to define/change appearance of the buttons, Next Prev buttons, etc, so basically a real template, is it possible?
Your help just shows 4 properties, and as for me, they are useless.
So I will ask 1 more time, is it possible to define HTML template (layout) of the pager?
Your help just shows 4 properties, and as for me, they are useless.
So I will ask 1 more time, is it possible to define HTML template (layout) of the pager?
0
Hello Dmytro,
Defining the HTML template for the pager (next/previous buttons mark-up) is not supported. I suggest you to try modifying the appearance via overriding the corresponding CSS classes.
Regards,
Alexander Valchev
Telerik
Defining the HTML template for the pager (next/previous buttons mark-up) is not supported. I suggest you to try modifying the appearance via overriding the corresponding CSS classes.
Regards,
Alexander Valchev
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0

Dmytro
Top achievements
Rank 1
answered on 10 Sep 2013, 02:58 PM
Hello Alexander ,
I just need a minimalistic design with simple text links and changed messages, 1 - 10 of 2633 PRODUCTS instead of 1 - 10 of 2633 items, etc. How does it possible using just css?
I just need a minimalistic design with simple text links and changed messages, 1 - 10 of 2633 PRODUCTS instead of 1 - 10 of 2633 items, etc. How does it possible using just css?
0
Hi Dmytro,
You can change the messages through the Messages builder. Particularly for the "1 - 10 of 2633 items" message the code will look like:
The full list of messages configuration options are available here:
Regards,
Alexander Valchev
Telerik
You can change the messages through the Messages builder. Particularly for the "1 - 10 of 2633 items" message the code will look like:
.Pageable(p => p.Messages(msg => msg.Display(
"{0}-{1} of {2} products"
)))
The full list of messages configuration options are available here:
The design of buttons should be modified via CSS. Please use the developer tools of your browser to examine currently applied classes and CSS rules.
Regards,
Alexander Valchev
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!