jqGrid (a jQuery plugin) is a Ajax-enabled JavaScript control that provides solution for representing tabular data on the web. Since the grid is client-side solution and loading data dynamically through Ajax callbacks, it can be integrated with any server side technology.
98
votes
19answers
43k views
JavaScript data grid for millions of rows [closed]
I need to present millions of rows of data to users in a grid using JavaScript.
I don't want the user thinking about viewing finite pieces of data (ie. pages); it should appear that all of the data ...
50
votes
10answers
44k views
Resize jqGrid when browser is resized?
Is there any way to resize a jqGrid when the browser window is resized? I have tried the method described here but that technique does not work in IE7.
41
votes
8answers
12k views
jqGrid does not render correctly in Chrome/Chrome Frame
Currently using Chrome v19.0.1084.46 (Official Build 135956) beta-m
jqGrid 4.3.2 (latest release)
The problem is that no matter the size of my grid, columns, or containing div, a small fraction of my ...
33
votes
7answers
28k views
How to show all rows in the jqGrid?
jqGrid exposes a property rowNum where you can set the number of rows to display for each page. How do you set the grid to just display ALL rows?
Right now I'm just setting the rowNum to something ...
28
votes
6answers
50k views
Hidden Columns in jqGrid
Is there any way to hide a column in a jqGrid table, but have it show as read-only when the row is edited in the form editor modal dialog?
27
votes
4answers
12k views
Wrapping Text lines in jqgrid
simple question (i think), but can you get lines of text to wrap in jqgrid? i have had a look round but i can't find anything.
Cheers
Luke
27
votes
5answers
6k views
Should one replace the usage addJSONData of jqGrid to the usage of setGridParam(), and trigger('reloadGrid')?
I wrote recently an answer to the question "jqGrid display default “loading” message when updating a table / on custom update". While writing the answer I thought: why does he use the addJSONData() ...
25
votes
6answers
35k views
How to implement search on jqgrid?
So I've got basic example of jqgrid working in ASP.NET MVC, the javascript looks like this:
$(document).ready(function() {
$("#list").jqGrid({
url: '../../Home/Example',
...
25
votes
2answers
14k views
jqgrid with asp.net webmethod and json working with sorting, paging, searching and LINQ — but needs dynamic operators
THIS WORKS! .. but still needs one more thing...
Okay, so this is both a "comment" and question. First, is the working example that may help others in search of a asp.net webmethod / jqGrid approach. ...
22
votes
1answer
19k views
How to filter the jqGrid data NOT using the built in search/filter box
I want users to be able to filter grid data without using the intrinsic search box.
I have created two input fields for date (from and to) and now need to tell the grid to adopt this as its filter ...
22
votes
2answers
8k views
Is it possible to remove the expand/collapse button from the jqGrid header?
I'm using the jqGrid available at http://www.trirand.com/jqgrid/jqgrid.html and I can't find a way to disable its expand/collapse button on the top right of the header. Anyone know if there's an ...
22
votes
18answers
75k views
How to get a jqGrid cell value
How to get a jqGrid cell value when in-line editing (getcell and getRowData returns the cell content and not the actuall value of the input element).
20
votes
5answers
29k views
jqGrid with an editable checkbox column
When using jqGrid how do you force a cell to load in its editable view on page load as well as when it is clicked?
If you set up 'cell editing' like below, the check box only appears when you click ...
20
votes
8answers
29k views
jqGrid horizontal scrollbar
I developed AJAX interface with jQuery and jqGrid.
How I can remove horizontal scrollbar from my jqGrid table?
http://dskarataev.ru/jqgrid.png
If I set autowidth: true, then I get width of table = ...
20
votes
1answer
11k views
Setting the content-type of requests performed by jQuery jqGrid
I am using the latest version of jqGrid: 3.6.4
This seems like a simple problem (or at least it did before I spent a few hours on it):
When the grid sends a request to the server (to a controller ...