I’m wondering if it’s possible to nest the params being sent by the dataProcessor.
I see that you can set it up to use meaningful names, defined by the columns as mentioned here:
docs.dhtmlx.com/doku.php?id=dhtm … nfig_debug
But I’m wondering if you can have something like this for the params passed to the server:
{ book: { title: “DHTMLX for Dummies”, author: “Unknown” }, user: { name: “John Doe”} }
Instead of this:
{ book: “DHTMLX for Dummies”, author: “Unknown” }
On the server, I’m having to do a bunch of extra work to ignore certain params since everything is being passed in as one group. Would be great if I could do something like params("book), params(“user”), etc.
But I’m not sure if DHTMLX supports what I’m asking for.
Thanks
Kenton