I am interesting in knowing how you would recommend setting

I am interesting in knowing how you would recommend
setting up a server relationship with the dhtmlxGrid control.  After
changes are made on the client, there should be a way to apply the changes to a
database.


There are 3 ways to apply client side changes to
server side:


a)
Use custom javascript routines - the data can be manually collected from grid,
manually serialized and sent to server for processing - this is the most
complex way to solve the problem.


b)
XML serialization - grid can serialize all content to XML (format is the same
as for grid init). Such XML can be send to server for further processing.


c)
Use dhtmlxDataProcessor lib, dhtmlxDataProcessor lib collects changed data on
the fly and send such info to server by AJAX
calls (API allows to configure how it will be sent - automatically or by user
generated events). dhtmlxDataProcessor includes ready for use server side
solutions for PHP, ASP and Ruby-on-Rails; but it easily can be extended to any
other server side language.<o:p></o:p>