Rank: Member Groups: Member
Joined: 2/6/2012 Posts: 13
|
Hi,
I have an EO:Listview that has both scroll bars disabled and no paging. I am populating the grid in code behind such as:-
EO.Web.GridItem gitemRecentEvents = this.GridRecentEvents.CreateItem();
gitemRecentEvents.Cells["Time"].Value = (string)response.eventData.data[i - 1].time; more code...... this.GridRecentEvents.Items.Insert(0, gitemRecentEvents);
Now all this works OK in IE6, IE7 and IE9, the item(s) are inserted in grid and and can be viewed fine, except in Firefox (latest update) and IE8 in non-compatibility mode the grid is always empty unless I enable the scroll bars but I do not want any scroll bars nor paging as the grids are used to display the only the latest data that is inserted into them (up to 10 rows) - any ideas ?
Thanks.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,195
|
Hi,
We have posted a new build that should address this issue. Please see your private message for the download location.
You will need to explicitly set the Grid's Width as IE is unable to automatically adjust the border to fit the contents (other browsers can). Nevertheless, all rows should display fine with the new build.
Thanks!
|