ExtJs layout

How do i use dhtmlx to a accomplish a extjs layout ‘Framed with Checkbox Selection and Horizontal Scrolling’ ?



demo extjs.com/deploy/dev/example … grid3.html





Thanks in advance!

Just define one column of grid as checkbox and add oncheck logic to onRowSelect event

grid.setColTypes(“ch,ed”);
grid.attachEvent(“onRowSelect”,function(id){
grid.cells(id,0).setValue(1);
});