im using dhtmlxLayout with 2 cells, i made a grid in 1 cell.
How can i make it work when i click a row in the grid, the data loads in dhtmlxForms in the second cell?
You may set onRowSelect event:
grid.attachEvent(“onRowSelect”,function(rowId){
form.load(url+"?id="+rowId);
})
the form (css) doesnt load, i’ve included the files… do i also need to use a attachForm(); function for this?
If layout is resizable, it is better to use attachForm():
dhtmlxForm/samples/01_init/05_window.html