This question is locked. New answers and comments are not allowed.
I have a client side bound grid and I want multple hidden columns.
If I have multiple hidden columns at the end of my grid, the columns are misaligned with the column headers.
If i just have a single hidden column at the end of my grid everything works...
How can I fix this, seems to happen in IE8 but if I turn on 'compatibility mode' the problem goes away...
Example:
This misaligns columns with their respective headers (Two or more hidden columns)
This works perfect...(One hidden column)
How can I fix this
If I have multiple hidden columns at the end of my grid, the columns are misaligned with the column headers.
If i just have a single hidden column at the end of my grid everything works...
How can I fix this, seems to happen in IE8 but if I turn on 'compatibility mode' the problem goes away...
Example:
This misaligns columns with their respective headers (Two or more hidden columns)
columns.Bound(o => o.AssignedTo); columns.Bound(o => o.ResultLink).HtmlAttributes(new { id = "resultlink" }).Hidden(true); columns.Bound(o => o.MyId).HtmlAttributes(new { id = "myid" }).Hidden(true); columns.Bound(o => o.MyEvent).HtmlAttributes(new { id = "myevent" }).Hidden(true);
This works perfect...(One hidden column)
columns.Bound(o => o.AssignedTo); columns.Bound(o => o.MyEvent).HtmlAttributes(new { id = "myevent" }).Hidden(true);
How can I fix this