Extjs – column headers and row data are not aligned

extjsgrid

I have a gridpanel and 5 columns in that. Problem is that column headers and row data are not aligned. I believe its just the problem in my project only as when i create an example with the same code then everything works fine. Check the following image:

image

Can anyone suggest what could be the problem?

Best Answer

Please apply below css as per the requirements.

1) For Customizing specific ExtJS GridPanel, apply below css:

#testgrid_id table caption,table th,table td {    
padding : 0px !important;
margin : 0px !important;
}

Note: Here, above "#testgrid_id" is the id of specific Grid Panel.

2) For applying to all ExtJS GridPanels, apply below css :

table caption,table th,table td {    
padding : 0px !important;
margin : 0px !important;
}  

Thanks!

Related Topic