Is there any way to match the width of each column on flexigrid?
There is a stackoverflow question about it, but I can not figure it out how to apply some fixes to flexigrid as grocery crud uses different js file structure.
Could you please help to adjust the column width for all cells on flexigrid on grocerycrud?
One solution says:
I had this problem as well. Here is my fix, and it works great. In flexigrid.js around line 678, change this line.
$(tdDiv).css({textAlign:pth.align,width: $('div:first',pth)[0].style.width});
to this
$(tdDiv).css({textAlign:pth.align,width: $('div:first',pth).width() + "px"});
but I can´t find it.
Thanks.