When a column contains fields with null values there's a break in the row as shown below. I have a screen capture I can email you if you'd like to see it as it's a bit difficult to describe in words.
Also, what capabilities should we have with this CTP version of the grid? There's no Quick Design that I can find and trying to edit columns manually through the Properties doesn't seem to work either.
Have you also updated the css files in the ig_res directory of your application?
Has any progress been made on this or is there a work around? I'm seeing this too with the 9.2 w/ latest SP and IE 8.
Thanks,
Arthur
Has this been fixed in 9.2. I still have the issue of styles on blank cells not displaying in IE8.
Hi Zack,
Thanks for bringing this to our attention. Will fix in the next CTP.
Devin,
I had some time to look into this more this morning. I think there's a couple of issues going on. I tweaked the ig_DataGrid.css file as follows:
tbody.igg_Item tr td
{
/*border-top:solid 1px #D8D8D8;*/
padding:5px 8px 5px 8px;
vertical-align:middle;
}
tbody tr.igg_Alt td
Which gives me a solid border around all cells in the DataGrid. This is working fine where there is data. In my case where I have NULL values being returned in the datatable that particular column is being generated as "<td />" in the DataGrid. Would it be possible to have the DataGrid generate empty columns as <td> </td> instead?