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

In Inine edit of jqgrid, unable to cancel out the earlier edit event and switch to new event

When do inline edit in jqgrid row, then it allows to do but, again click on another row then, it is not cancelling earlier row and both will remain in edit mode. I need it to be cancel last one if user has clicked new row to edit as at single time,…
dsi
  • 3,199
  • 12
  • 59
  • 102
0
votes
2 answers

Asp.Net MVC5 - Passing Nested model from View to Controller through jqGrid Add dialogue

I am developing Asp.Net MVC5 Application with jqGrid. i have two models University and Religion. public class University { public int UniversityID { get; set; } public string UniversityName { get; set; } } public class Religion { public…
0
votes
1 answer

jqgrid not showing any results when count exceeds ~9000

I am using jqgrid version 4.1.2 with MVC4, using loadonce option. When the search result's count exceeds approximately 9000 records, no data is shown up on the grid. What might be the issue? Here is the JS code: Update 1 function showCompletedGrid()…
0
votes
1 answer

jqGrid create a column conditionally

I've got a working jqGrid to which I need to add a column based on the result of a javascript function. The column will just include an href link directing to another page. Is it possible to add a column this way when creating the jqGrid or would I…
RizJa
  • 1,961
  • 1
  • 21
  • 38
0
votes
2 answers

How to do filtering on complete JQGrid Data

I am using JqGrid with asp mvc, I am using select filter on grid headers for filtering. My grid is having paging , so when i am building select string it will return me only values which are available on current page only. But i am having complete…
Pavan Tiwari
  • 3,077
  • 3
  • 31
  • 71
0
votes
1 answer

Disable the NavGrid buttons in JQGrid when grid is empty

I want to Disable the NavGrid buttons in JQGrid when grid is empty. I am using the following code, but buttons are not getting disabled. var rowCount = jQuery('#gridID').jqGrid('getGridParam', 'reccount'); if (rowCount == 0) { …
Anand
  • 823
  • 1
  • 10
  • 19
0
votes
1 answer

Is it possible to show spinner while inline editing JQGrid?

I am using JQGrid. While inline editing the JQGrid and saving data to DB, it takes some time, during that time my page becomes inresponsive. So, during that timespan can I show spinner to show user that your edited data is "Updating..." I am using…
Anand
  • 823
  • 1
  • 10
  • 19
0
votes
1 answer

Hide a column while viewing selected row from JQGrid pager button.

I have one column in JQGrid. { name: 'Action', index: 'Action', width: 70, sortable: false, formatter: 'actions', formatoptions: { keys: true, editformbutton: false, editbutton: true, delbutton: false } } I want to hide the above column while…
Anand
  • 823
  • 1
  • 10
  • 19
0
votes
1 answer

'Date To' should be the beginning of 'Date From' modal popup jqgrid

Hi im using Jqgrid in MVC and the requirement is as such.. In the Model popup of jqgrid to add/edit a row.. I have 4 columns.. DateFrom, DateTo, Type, Remarks And im using jquery datepicker.. My Requirement After adding the 1st row.. while adding…
bharath
  • 111
  • 1
  • 2
  • 15
0
votes
2 answers

Sorting issue with jqgrid

I want to implement sorting of visible rows in jqgrid the default behavior of jqgrid is sorting all records. i have handled it on server side but the problem is when i do sort i always get page as 1 even when i am on page2 or other.below is my code…
SidD
  • 5,697
  • 4
  • 18
  • 30
0
votes
1 answer

Web grid for my asp.net mvc5 web application

I am working on an asp.net mvc-5 web application and I am using entity framework +Razor view. Currently for more than three weeks I have try and test many web grids , but I cannot find anythat provide the following main features:- compatible with…
John John
  • 1
  • 72
  • 238
  • 501
0
votes
0 answers

Grails2.4.3: export to pdf/excel using JQGrid

Currently I'm working on Grails2.4.3 and not able to find a workaround that how I could export my JQGrid data which is in grails(.gsp) into excel/pdf and in other formats.
0
votes
1 answer

MVCJqGrid checkbox column disable

I'm using JqGrid with MVCJqGrid Html wrapper in my mvc5 project. MVCJqGrid version I'm using is 1.0.15. I have following code in my cshtml file in order to create grid in page. @(Html.Grid("Contacts") .SetCaption("Contacts") …
user2185592
  • 368
  • 1
  • 8
  • 24
0
votes
1 answer

Pager not showing in jqGrid

I am using jqGrid.Here is index.html :


Here is .js file: jQuery("#grid").jqGrid({ datatype: "local", colNames:…
ashishk
  • 299
  • 1
  • 3
  • 17
0
votes
0 answers

First Example in JQgrid

I am new to jqgrid. I want to use it in my project. I have set up php server. I want simple operations like sorting, grouping, editing, saving etc. I am comfortable with showing data, sort it and group it using jqgrid but I am not sure how to show,…
ashishk
  • 299
  • 1
  • 3
  • 17