html - Kendo UI MVC4 Grid Column Header is not aligned with data -


i using kendo ui mvc4 helper. have set fixed width each column, when loading data data , header not aligned. then, when re-sizing column, columns aligned properly(no issue). please let me know solution aigned while loading content. , using grouping also.

please check screen shot.

just after load data

enter image description here

after re-sizing column enter image description here

please check html helper part.

..... .columns(columns =>                  {                      columns.bound(p => p.evaluationdt_id).hidden(true);                      columns.bound(p => p.itemid).hidden(true);                      columns.bound(p => p.itemname).width("160px").htmlattributes(new { title = "#= itemname #" }).sortable(true);                      columns.bound(p => p.itemcode).width("80px");                      columns.bound(p => p.brand).width("90px").htmlattributes(new { title = "#= brand #" });                      columns.bound(p => p.weight).width("50px").htmlattributes(new { style = "text-align: right" }).headerhtmlattributes(new { style = "text-align:left;" });                      columns.bound(p => p.uomcode).width("50px");                      columns.bound(p => p.packagingname).width("50px"); ...... 

try answer blog. may helpfull.

http://blog.falafel.com/kendo-grid-hierarchy-shared-column-headers/