Hi Everybody,
I am working in a project where i am using Alphabetic Pager. Everything is working fine. I am able to see all the letters from A-Y on the grid except letter 'Z'. Can i know how to see letter 'Z' on my grid. Thanks in advance for the help.
Thanks for the time,
Hari
I am working in a project where i am using Alphabetic Pager. Everything is working fine. I am able to see all the letters from A-Y on the grid except letter 'Z'. Can i know how to see letter 'Z' on my grid. Thanks in advance for the help.
Thanks for the time,
Hari
5 Answers, 1 is accepted
0
Hello Hari,
Indeed there is a small bug in our demo. This code in ItemCreated:
for (int i = 65; i < 65 + 25; i++)
should be
for (int i = 65; i <= 65 + 25; i++)
Greetings,
Vlad
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Indeed there is a small bug in our demo. This code in ItemCreated:
for (int i = 65; i < 65 + 25; i++)
should be
for (int i = 65; i <= 65 + 25; i++)
Greetings,
Vlad
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Hari
Top achievements
Rank 1
answered on 13 Nov 2008, 03:11 PM
Thanks for your reply. so what i need to do in order to get letter 'Z'. As we have used the Alphabetic Pager through out the project.
0
Hari
Top achievements
Rank 1
answered on 16 Nov 2008, 03:20 PM
Can anyone help me my hands are tied?
Thanks for your time,
Hari
Thanks for your time,
Hari
0
Hari,
Please use the corrected version of the code from my previous reply!
All the best,
Vlad
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Please use the corrected version of the code from my previous reply!
All the best,
Vlad
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Hari
Top achievements
Rank 1
answered on 17 Nov 2008, 10:34 PM
Hi Vlad,
I am sorry i did not notice that. Now i am seeing 'Z' letter. Thanks for your help.
Thanks,
Hari
I am sorry i did not notice that. Now i am seeing 'Z' letter. Thanks for your help.
Thanks,
Hari