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

kendo grid overflow outside kendo tabstrip

1 Answer 703 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Purush
Top achievements
Rank 1
Purush asked on 15 Dec 2011, 07:42 PM
I have Kendo tab on kendo splitter and Kendo Grid on the tab inside splitter. When i set fixed height for kendo grid it flows out of the tab container instead of streching the container and providing scroll bar. Any suggestion is appreciated. I've attached sample file and code snippet


          <div id="glaDocumentHost" class="glaReset">
              <ul>
                <li><label id="map">Grid</label></li>
               </ul>
               <div>
                    <div id="mecOutageGrid" style="height:100px"></div>
                </div>
         </div>

 $("#glaDocumentHost").kendoTabStrip();

        $("#mecOutageGrid").kendoGrid({
            groupable: true,
           sortable: true,
   dataSource: new kendo.data.DataSource({data:[{text:"one", value:"one"}, {text:"one", value:"one"},{text:"one", value:"one"}, {text:"one", value:"one"},{text:"one", value:"one"}, {text:"one", value:"one"},{text:"one", value:"one"}, {text:"one", value:"one"},{text:"one", value:"one"}, {text:"one", value:"one"}]}),
            columns: [{ title: "Site ID", field:"text" },
            { title: "Outage Started", field:"value" }]
        });

1 Answer, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 16 Dec 2011, 03:34 PM
Hello Purush,

Thanks for the demo page. As far as I can see, the problem is exhibited if the Grid (browser window) is too narrow for the group header text to fit on a single line.

Since you have a fixed height for the Grid and it cannot expand (so it can't expand the tab container either), the resolution is to disable text wrapping inside the group header with CSS:

.k-grouping-header
{
       white-space:nowrap;
       overflow:hidden;
}


All the best,
Dimo
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Grid
Asked by
Purush
Top achievements
Rank 1
Answers by
Dimo
Telerik team
Share this question
or