Check documentation for the latest version of dhtmlxSuite enableDataNames DHTMLX Docs

enableDataNames

changes the default names of incoming parameters (c0-cN) to the columns' ids in the Grid

void enableDataNames(boolean mode);
modebooleantrue to change the default names

Example

dp.enableDataNames(true);

Details

The parameters c0-cN, used by default, are not very useful on the server side. Dataprocessor allows using the IDs of Grid columns' instead of them.

Back to top