Unable to understand java connectivity using dhtmlxgrid

Hi,

I was trying to use java connector with dhtmlxgrid. Please help in understanding the below lines of code of index.html

myGrid.load(“myconnector.do”)
myDP = new dataProcessor(“myconnector.do”)

In the above line what is the significance of myconnector.do?? Is it any class name or we can changethis ???

If you have any basic tutorials please share.

Thanks In advance.

Regards,
Pavnesh

In both cases “myconnector.do” just an relative url. Which instructs to request that url for loading ( load command ) and saving ( dataprocessor creating )

That may be ANY url, how it is mapped to related server side handler doesn’t matter.

If you plan to use connectors - check
dhtmlx.com/x/download/regula … r_java.zip

It contains working samples with both client and server side code. ( urls are mapped to servlets, which are producing data )
Also, you can check docs here

docs.dhtmlx.com/doku.php?id=dhtm … orjava:toc