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
1
vote
1 answer

How to reload data in free jqgrid 4.15.4

I have a question regarding free jqgrid. My jqgrid is loading fine with all data. I have given one dropdown and search button explicitly. when I am trying to search by selecting the dropdown and clicking on search button, New data is not loading…
Chandan
  • 217
  • 1
  • 3
  • 17
1
vote
0 answers

How to perform toolbar searching based on certain condition in free jqgrid 4.15.4

Though I have spent a lot of time on looking for similar QA here but Can't able to find out. If You think that I missed checking something please let me know. question metadata: So I am using free jqGrid 4.15.4 for showing data in view. I am able to…
Chandan
  • 217
  • 1
  • 3
  • 17
1
vote
0 answers

checked all checkbox in subGrid when checked checkbox in jqGrid

I have one JqGrid and one subGrid. All JqGrid and subGrid I set: multiselect: true When I checked one row from JqGrid I want automatic checked all row in subGrid like this image below:
Hong Van Vit
  • 2,884
  • 3
  • 18
  • 43
1
vote
1 answer

Show 'All' along with page size in footer dropdownlist

I am using Jqgrid in my project and wants to add 'All' along with page size in footer dropdownlist.So please let me know how can I show it.Also when user select All from dropdownlist it will display all the record.Please refer attached file.
Pankaj
  • 3,131
  • 4
  • 14
  • 22
1
vote
1 answer

Pager of jqgrid not visible in my mvc application

I have a jqgrid
$("#tblJQGridCCVT").jqGrid( { url: "@Url.Action("MyAction", "MyController")" +…
WorksOnMyLocal
  • 1,617
  • 3
  • 23
  • 44
1
vote
1 answer

jqgrid - horizontal scrollbar - position - after paging - from left to right

Consider the following scenario: JqGrid is loaded. Since data is wide, it has horizontal scroll bar. scroll to right. Now, click on next page(paging) Next page is displayed. But the scroll bar is in right side, that is from where at previous page…
1
vote
2 answers

How to sort the jqGrid without considering the last blank row

I have a jqGrid where there is a blank row added in the end. I need to sort the grid without considering the last blank row. How can I achieve ? Kindly help.
suu
  • 155
  • 2
  • 9
1
vote
1 answer

Unable to bind the data to dropdown in jqgrid when it is editing getting data using web api

$j(document).ready(function () { $j.ajax({ type: "GET", url: "http://localhost:9611/api/Master/GetBackendUsersList", contentType: "json", dataType: "json", success: function (data) { var…
venki k
  • 27
  • 4
1
vote
0 answers

JqGrid NavGrid refresh not working

after create or edit the grid is not getting dynamically updated.Please suggest any solution, below my script.I have enabled refresh : true , but still the grid is not getting refreshed. //load grid $(function () { $("#grid").jqGrid({ …
Md Arefin
  • 21
  • 1
  • 7
1
vote
0 answers

mvc jqgrid: jQGrid displays NaN for the amounts on hosting in IIS server

Currently, I am looking at the reporting module of a software which was developed by the another developer(unavailable now). He have used both jQgrid as well as jQGrid for asp.net mvc. There is no data rendering problem in the sales report using the…
Avishekh Bharati
  • 1,858
  • 4
  • 27
  • 44
1
vote
0 answers

Get data from hidden index on click delete icon in jqgrid

Problem in get data from current row when click on delete button. I want to get data from hidden field passed from codeigniter controller and get that hidden field data when click on delete button. {name:'PL_DELETE', index:'PL_DELETE',…
1
vote
1 answer

JqGrid grouping not working

I try to groupe my records using jQgrid but it does not work correctly as you can see from linke below jqGridview As you can see from picture above, records are not properly grouped . The code I am using is as below : $(document).ready(function ()…
serge
  • 391
  • 5
  • 24
1
vote
1 answer

Data is not loading in JQGrid

Data is not loading in the jqgrid. There are no errors when I ran the code also.I think I have some problem with passing the data from controller and receiving in the view.When I load the data retrieved from database in the html table it worked fine…
Baji
  • 131
  • 5
  • 16
1
vote
0 answers

How to Insert new row in inline JQGrid?

View page: jQuery("#theGrid").jqGrid({ url: '/Student/Grid', datatype: "json", colNames: ['Id', 'Firstname', 'Middlename', 'Lastname', 'Birthdate', 'Birthplace', 'State', 'Nationality', 'Religion', 'Ishandicaped ?', 'Actions'], …
1
vote
0 answers

Pagination stops after JQGrid Reload and setting custom page number?

I am new to JQgrid , my problem is my Jqgrid pagination stops after a grid reload. I am highlighting a selected row and maintaining grid page based on given Id. For Eg : If I select row with Id 45 on page 4 of JQgrid , page is redirected again and…
tanuj shrivastava
  • 722
  • 3
  • 9
  • 21
1
2
3
10 11