Select to view content in your preferred language

dataGrid not showing

659
1
08-17-2012 05:43 AM
danbecker
Frequent Contributor
contentPane/tabContainer declared in html markup. The 3rd tab holds a dataGrid, which is hidden by default. After findTask.execute, the dataStore is set and grid is filled, but I can't get it to display.

here's a jsfiddle:
http://jsfiddle.net/dbecker88/BhNEa/2/

At the bottom of the html markup, if you remove the
<div id="searchStatus"></div>
and re-run the fiddle, the datagrid displays fine.

Any help with this?
I would like to keep the searchStatus div because it gets loaded with various info during the find.

Thanks!
0 Kudos
1 Reply
danbecker
Frequent Contributor
found a work-around...specify height & width of dataGrid table

#grid{
    height:90% !important;
    width: 100% !important;
}
0 Kudos