Control from dhtml combo to dhtml grid

Hello all,
My problems are
1. I want one combo filling the values/options from database.On multiselect of options from combo,the corresponding selected option details should get populated to the grid(non editable).
Say for example,
I have employee names in the combo box, on selection of empname1,empname2(multiselect) from combo,the details like employee name,employee address,employee phone(from the database) of emp1 and emp2 should get populated in the grid.

      2. If i use control like check box,radio box, toggling(yes/no) of dhtmlx grid,how can i get the value to the server which is checked/toggled.

Say for example,
I have list of the employee details in the grid with each detail appending with checkbox,how can i get the value which row is checked/not to the server.

    3. I want a combo box inside one column of a grid populating options from the database.On selection of an option from combo box,the corresponding selected detail should get autofilled from the database.

Say for an example,
In a grid,there are 3 columns say employee code,employee name and employee address.Employee code column should be combo box filled from database.On selection of employee code,employee name and employee address (the next 2 columns) should get autofilled depending on the selection from the database to the grid.

Please help to solve these.Its urgent.

Firs of all, please check this tutorial. docs.dhtmlx.com/doku.php?id=tuto … htmlxstart

  1. You can use dhtmlxCombo to fill the values/options from database. You can use “onChange” event to catch the combo option is changed docs.dhtmlx.com/doku.php?id=dhtm … t_onchange
    When combo option is changed, you can reload grid with following way:

grid.clearAll();//remove all rows from the grid
grid.load(“url?params”);//load new rows to the grid

  1. You can use dhtmlxDataProcessor extension which will monitor when cell is edited and send request to the server side. Please find more information here docs.dhtmlx.com/doku.php?id=dhtm … cessor:toc

  2. I want a combo box inside one column of a grid populating options from the database
    It can be done with “combo” eXcell type (available in pro version only)

On selection of an option from combo box,the corresponding selected detail should get autofilled from the database.
You can catch moment when ‘combo’ cell is edited with “onEditCell” event, send adition Ajax request to the server side (dhtmlxAjax component) and change necessary cells values with setValue() method.