Has anyone been able to implement the JQuery grid plugin, jqGrid? I'm trying to implement the JSON paging, and I feel like I'm getting close, but that I am also being swamped by inconsequential details. If anyone could post some sample code, I would greatly appreciate it.
|
|
Found your post while I was trying to do this for my project. I got it working. For anyone who needs it in the future, jqGrid won't work out of the box with JSON and ASP.NET. You need to make a couple of small modifications to grid.base.js. Around line 829, replace the json case section with the following:
Then add the following function:
You will also need to include the JSON parser and stringifier. Along with working with ASP.NET, this revised code is also more secure because the eval statement is gone. EDIT: I should have also noted that you might have to make similar edits to grid.celledit.js, grid.formedit.js, grid.inlinedit.js, and grid.subgrid.js. |
||||
|
|
|
You can use the ASP.Net MVC JsonResult to populate the grid. Person Class
In your controller you would have:
And the jqGrid configuration for the url would be:
|
||
|
|
|
|
My Implement: data: "{'page':'" + gdata.page + "','rows':'" + gdata.rows + "','sidx':'" + gdata.sidx + "','sord':'" + gdata.sord + "','nd':'" + gdata.nd + "','_search':'" + gdata._search + "','searchField':'" + ts.p.searchdata.searchField + "','searchString':'" + ts.p.searchdata.searchString + "','searchOper':'" + ts.p.searchdata.searchOper + "'}", success: function(JSON, st) { if (st == "success") { addJSONData(JSON.d, ts.grid.bDiv); if (loadComplete) { loadComplete(); } } Insted using complete ajax event use success event. this way is prevent the double json seralize. Just one thing that i didnt realize with cell editing: Assume that I want edit multiple cells with same data type (int). I have only one web method! and I cant oveload with a same data type with diffrent name! Is anyone solve this kind of probleme? |
||
|
|
|
|
I think you can make jqgrid work with json & asp.net without modifying grid.base.js and other jqgrid files, you have to use the datatype property to define your own custom ajax call and define a json reader, jqgrid will then use your custom ajax call and reader every time the grid reloads. The process is similar for xml you just define an xmlreader instead of a jsonreader. All the properties of the jsonreader are defined in the online documentation For examples of custom datatype see "Function as datatype" in the live demo page under "New in 3.3" |
||
|
|
|
I've just jTemplates for doing client-side paging with jQuery and ASP.NET. I did a blog post on it which you can find here: http://www.aaron-powell.com/blog.aspx?id=1209 It looks at how to create a templated data location, return the data from ASP.NET and then implement a paging solution. |
||
|
|
|
|
the d in the json is an inbuilt defense against a potential exploit example I found that uses mvc Full info here |
||
|
|
|
|
Hi Adam The flexgrid plugin is quite sparse on doumentation however in a small section on the demo page there is a tut on creating a json serialized object, this is a bit misleading because the grid requires a specific format, I have ported the php code for xml option with a little monkey grease you can do the same for the json formatting heres my xml port
please consider the following code in the webservice.asmx class
|
||
|
|
|
|
I'm just floundering trying to pull everything together. My first concern is simply generating a correct JSON response. My returned class appears to be serialised as a property named 'd' - is this a JQuery thing, or ASP.Net web method convention? I'm afraid that jqGrid will be looking for the data to be top-level, whereas asp.net will put it in a property called 'd':
|
||
|
|
|
|
I'm looking at doing a similar thing with FlexGrid for jQuery and WCF emitting JSON but I'm still working on it. Are there particular issues you are encountering? |
||
|
|
