I need to add cell borders to my ExtJS grid, here is what I did: I added this to the grid:
viewConfig:
{
stripeRows: false,
getRowClass : function(record, index) {
return "grid-row"
}
},
And then I included this css style:
.grid-row td{
line-height:22px;
font-size: 13px;
border: solid gray 1px;
}
My border works fine, but then my grid shows the horizontal scroll.
Is there any other solution for add borders to the cells, of for get rid of the scroll?
Thanks.