grid and scrollbar issue

Hi,

I am currently using dhtmlx with symfony in order to display some database information with the following grid :

myGrid.selMultiRows = true;
myGrid.setImagePath( “{{ asset(‘bundles/ariicore/images/treegrid/’) }}”);
myGrid.setHeader("{{“ID”| trans}},{{ “Service” | trans }},{{“Host ID”| trans}},{{“Host Name”| trans}},{{“Command line” | trans}}");
myGrid.setInitWidths(“80,300,80,200,*”);
myGrid.setColAlign(“left,left,left,left,left”);
myGrid.setColTypes(“ro,ro,ro,ro,ro”);
myGrid.setColSorting(“int,str,int,str,str”);
myGrid.init();
myGrid.enableSmartRendering(true,20);
myGrid.attachEvent(“onRowDblClicked”, ServiceDetail );
myGrid.load("{{ url(‘xml_Monitor_services_grid’) }}");

However, when I display the grid in Firefox, the last column (which contain very long expression) is cropped and no horizontal scrollbar is present… But when I resize the Windows in order to hide the last column (the 5th), the horizontal scrollbar is present ! But actually I want to have the scrollbar covering all columns, not only the first 4. Any hints how to solve this issue ?

myGrid.setInitWidths(“80,300,80,200,");
"
” means that the last column will take all the available in the grid container width to avoid the scollbar.
Please, try to replace it some numeric value.