Categories | Question details Back To List | ||
i want to add the data in dhtmlxgrid using popup window Hello, i have open one popup windoe in one column and that popup window contain one dropdown. i have select the value and submit the button then it will reresh the page . i want it will update the data without refresh the page. please tell how it is possible in dhtmlxgrid. please reply me as soon as possible. thanks for previous help. regards Suraj Answer posted by Stanislav (support) on Jan 04, 2010 07:52 Instead of reloading grid, you can call js command from onclick event, similar to the next var grid = opener.mygrid; grid.cells(grid.getSelectedRowId(), grid.getSelectedCellIndex()).setValue("some new value") |