issuse in dhtmlxgrid select and deselect rows

hi

problem is when i select check box in dhtmlxgrid, that means selected entire row highlight by bold.
then i deselected the check box that could not transfer the normal form, they only deselected check box.

Most probably you have dataprocessor attached, and it marks changed but not saved yet row in such way.

how can i save to dataprocessor.

Normally you will have in your code something like

var dp = new dataProcessor(“some.php”)
dp.init(mygrid);

it will be enough to enable auto-saving to the server side.

If auto-saving doesn’t work it can be a result of
a) client side misconfiguration ( you can disable auto-saving mode on client side)
b) not-catched server side error

Use firebug or dev-tools and check is xhr request sent to the server side after data modification, and its response.