开发者

Where should this URL point to if I am using Java instead of PHP?

开发者 https://www.devze.com 2023-01-12 22:04 出处:网络
I have the following jqGrid script: jQuery(\"#editgrid\").jqGrid({ 开发者_C百科url: \"editing.php?q=1\",

I have the following jqGrid script:

   jQuery("#editgrid").jqGrid({        
  开发者_C百科     url: "editing.php?q=1",
       datatype: "xml",
       // ...

Where should the url point to if I am using Java instead PHP for creating the crud?


It should just point to an URL where you've some Java code running and listening on the particular URL. In a Java webapplication you normally use a Servlet class for this. Just let the URL match the <url-pattern> of the Servlet class as you've definied in the web.xml. In the Servlet class you just implement doGet() method accordingly to handle the HTTP GET request and response.


If you're using DWR, specify a function as your datatype (instead of "xml") that calls the DWR Javascript method. The DWR function's callback should then call the editGrid's addXMLData like so:

$("#editGrid")[0].addXMLData(xmlData)

note the [0] notation, which is neccesary. Details here: JQGrid Wiki: methods

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号