For my telerik radgrid I am using numeric pages. I can see the page numbers. But I am not able to identify the selected page. All the page numbers remais alike after selecting the page. I need the selected page number to be underlined. Help me in this
相关问题
- DotNetNuke 5.6.2 - Can Community Edition Users uti
- Ignore global style for specific control and it
- Kendo UI for MVC Grid How do I hide the ID column
- Issues using Telerik RadWindow and custom WindowMa
- telerik radGrid - persist client state on sort/pag
相关文章
- SQLExpress connection fails in IIS 7 w/ user insta
- Kendo UI Datasource - Filter on releated data
- Telerik radGrid - possible to do use AllowAutomati
- How to send IEnumerable list from Ajax to Controll
- Bound columns require a field or property access e
- KendoUI integration into Durandal JS
- GPL 2.0 Free Telerik Extensions for ASP.NET MVC [c
- Compile Error CS0433 on pre-compiled ASP.NET 2.0 s
There is a control called PagerTextFormat that allows you to display current page, total page number, total record number and etc.
After adding your grid (radgrid), you can manually define a PagerStyle block in aspx side and put your code like below:
You probably have that block since you have already explained you are using numeric controls. You just need to add the above definition to the block.
Now, let me explain all those numbers:
It's not putting a line under the selected page number, but I think you can benefit from it. Check this telerik page to find more. There are different versions and examples.
Hope this helps! Good luck!