Questions tagged [mvcjqgrid]

Simplifies the implementation of jqGrid in ASP.NET MVC applications.

Definition:

MvcJqGrid is an HTML helper for ASP.NET MVC which eases the implementation of jqGrid in your website or web application.

The helper contains a fluent interface providing for a clean and readable view.

Most of the properties, events and methods from the base classes of jqGrid are implemented in the helper, including paging, sorting, and toolbar searching.

At this point, editing, and subgrids are not yet supported. Treegrids are only basically supported.

A modelbinder for handling AJAX requests from the grid is also included in the library (you can use your own if you want to).

The modelbinder and the helper don't depend on each other.

Important Links:

157 questions
0
votes
1 answer

JqGrid Data not comming to view

i want to show data in jqgrid but data is not showing my controller code is below public JsonResult getjqgriddata() { var emp=from v in ent.employees select v; var users = emp.ToArray(); return Json(users,…
abiansh
  • 79
  • 2
  • 2
  • 9
0
votes
1 answer

jqgrid datatype:json for url request, and json response not work to populate

I want to make a request (sync) to the server to populate the jqGrid. I did this: $table.jqGrid({ datatype: "json", url:'takepage/page=1', mtype: 'GET', …
Doom
  • 1,258
  • 3
  • 15
  • 24
0
votes
1 answer

Performance Difference between client side jqgrid vs server side jqGrid

I am working on an MVC project where I use jqGrid for ASP.NET MVC. However I am told by that the pure-jquery-client-side version (jqGrid) is better in performance. Is this true? To me they both seem to be doing the same stuff, just that the code is…
superartsy
  • 489
  • 1
  • 11
  • 27
0
votes
1 answer

Jqgrid showing total records 0 even it has records

1. $("#jqgproduct").jqGrid('getGridParam', 'data').length; 2. $("#jqgproduct").getGridParam("reccount"); I tried in above both ways but it is showing 0 records even thought the grid has 3 records here is my complete code. please let me know…
user2189168
  • 189
  • 1
  • 2
  • 15
0
votes
1 answer

Dynamic JqGrid MVC3 (Razor) Delete functionality

I am using https://github.com/robinvanderknaap/MvcJqGrid in my projet, I want to implement delete functionality with each row in Grid. I followed http://playground.webpirates.nl/mvcjqgrid sample project. I did not find any help related to delete…
-1
votes
1 answer

In 3 level JqGrid, get the first table's primary key when the 2nd table's "+" sign is pressed

I am new to JqGrid and please help me with this request. I have a 3 level hierarchical JqGrid setting as shown in the link. It is not exactly the same, but very similar. My requirement is to have the CustomerGrid's primary key also passed when…
user007
  • 1,504
  • 2
  • 18
  • 51
-1
votes
1 answer

i am getting different type of database related error while implementing raven db in mvc4

i am new to asp.net mvc just want to learn about mvcjqgrid and raven db and i am following this link example :please help me https://github.com/robinvanderknaap/MvcJqGrid app build successfully and did not find any error, but getting following…
user3548608
1 2 3
10
11