This is odd.. So my grid seems to be working, but the page numbers are being shown vertically.. not horizontally . Am I missing something?
TTAIA
TTAIA
4 Answers, 1 is accepted
0
Hello Christian,
Iliana Nikolova
the Telerik team
I believe this issue is CSS related. Could you please ensure both kendo.common.min.css and the theme's CSS file are included? If the suggestion does not help I would like to ask you to send a runnable example / live URL which reproduces the issue. This way I would be able to check what is going wrong and advice you further. Thank you in advance for your cooperation.
Regards,Iliana Nikolova
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0

Lee
Top achievements
Rank 1
answered on 03 Apr 2013, 03:52 PM
I have the following set:
Is that not enough?
Here's a link to see:
http://alpha-leadsadmin.simplescienceinc.com/fluid/search_result_lead.php
Thanks...
<script type="text/javascript" src="/js/jquery.min.js"></script>
<script type="text/javascript" src="/js/kendo.all.min.js"></script>
<link rel="stylesheet" type="text/css" href="/styles/kendo.bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/styles/kendo.common.min.css">
Is that not enough?
Here's a link to see:
http://alpha-leadsadmin.simplescienceinc.com/fluid/search_result_lead.php
Thanks...
0
Hello Christian,
Thank you so much for the link. I believe the issue is caused by the following custom CSS rule:
In order to achieve the desired result you could set the width to auto. For example:
the Telerik team
Thank you so much for the link. I believe the issue is caused by the following custom CSS rule:
.form_box ul li {
width
:
100%
;
//....
}
.form_box ul li {
width
:
auto
;
//....
}
As for the included files, yes these are the needed files.
Regards,
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0

Lee
Top achievements
Rank 1
answered on 05 Apr 2013, 07:56 PM
Hmm.. that makes sense. I see it now.
Thanks for that advice!
Thanks for that advice!