This is a migrated thread and some comments may be shown as answers.

Page numbers are vertical?

4 Answers 184 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Lee
Top achievements
Rank 1
Lee asked on 02 Apr 2013, 03:13 PM
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

4 Answers, 1 is accepted

Sort by
0
Iliana Dyankova
Telerik team
answered on 03 Apr 2013, 07:42 AM
Hello Christian,

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:

<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
Iliana Dyankova
Telerik team
answered on 05 Apr 2013, 12:48 PM
Hello Christian,

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%;
    //....
}
In order to achieve the desired result you could set the width to auto. For example:
.form_box ul li {
    width: auto;
    //....
}

As for the included files, yes these are the needed files.

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 05 Apr 2013, 07:56 PM
Hmm.. that makes sense.  I see it now.

Thanks for that advice!
Tags
Grid
Asked by
Lee
Top achievements
Rank 1
Answers by
Iliana Dyankova
Telerik team
Lee
Top achievements
Rank 1
Share this question
or