Tagged Questions
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.
49
votes
17answers
14k views
JavaScript data grid for millions of rows
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 ...
24
votes
9answers
21k 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.
20
votes
5answers
13k 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 ...
20
votes
6answers
26k 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',
...
19
votes
3answers
3k 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() ...
19
votes
2answers
8k 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. ...
16
votes
14answers
36k 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).
16
votes
5answers
23k views
Hidden Columns in jqGrid
Is there any way to hide a column in a jqGrid table, but have it show when the row is edited in the form editor modal dialog?
13
votes
7answers
6k views
jqGrid and dynamic column binding
How to bind jqGrid dynamically?. The columns are not available at design time but will only be available only at runtime.
In the current jqGrid design the colmodels and other properties needs to be ...
13
votes
2answers
5k 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
12
votes
2answers
494 views
JQGRID: any easy way to implement undo on excel like jqGrid implementation
Just to give little update before putting my question....
I've been able to come up with some additional features on the jqgrid that I'm using (after going through many forums) including: copy-paste ...
12
votes
0answers
2k views
jqGrid multi-checkbox custom edittype solution [closed]
For those of you trying to understand jqGrid custom edit types ...
I created a multi-checkbox form element, and thought I'd share. This was built using version 3.6.4. If anyone has a more efficient ...
12
votes
1answer
5k 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 ...
12
votes
2answers
3k 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 ...
12
votes
3answers
11k 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 ...
11
votes
3answers
21k views
reload a loaded jqGrid with a different table data
I have a page that displays a table in two different modes. In each mode I have a different set of columns. I'm using jqGrid to display the table. When I try to load the table for the second time ...
11
votes
3answers
24k views
jqGrid - Default Add/Edit buttons - Processing Server Response
I am working on my first implementation of a jqGrid. I am using the standard add/edit buttons that appear in the navGrid but am having problems identifying how process the server response when I click ...
11
votes
6answers
11k views
html link column in jqGrid
Is it possible have a html link in a column with jqGrid, I can't find any example in the documentation?
10
votes
1answer
2k views
jqgrid error - b.jgrid.jqID is not a function
I'm trying to get started with the jQuery plugin, jqGrid, however it's giving me the error - "b.jgrid.jqID is not a function". I downloaded the plugin from http://www.trirand.com/blog/?page_id=6 with ...
10
votes
4answers
4k views
Remember (persist) the filter, sort order and current page of jqGrid
My application users asked if it were possible for pages that contain a jqGrid to remember the filter, sort order and current page of the grid (because when they click a grid item to carry out a task ...
10
votes
1answer
9k views
Building JQGrid with Dropdowns and checkboxes
I have used jqgrids to display static values. But I have a scenario where I need to have checkboxes and dropdown values to be displayed in JQGrid columns. Depending upon whether I check or uncheck the ...
10
votes
9answers
9k views
Implementing jQuery's jgGrid with ASP.Net and JSON formatting
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 ...
9
votes
5answers
3k views
Possible to make jqGrid stretch to 100%?
Is it possible to make it so that a jqGrid will have a width set to 100%? I understand that column widths must be an absolute pixel size, but I've yet to find anything for setting the width of the ...
9
votes
1answer
7k 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 ...
9
votes
6answers
6k views
Resize jqGrid based on number of rows?
I want my jqGrid to shrink and expand based on the number of rows it has. Let say it currently has 10 rows, the height of the jqGrid will shrink to 10 rows (so that no gaping empty rows is exposed).
...
9
votes
9answers
29k views
jqGrid with JSON data renders table as empty
I'm trying to create a jqgrid, but the table is empty. The table renders, but the data doesn't show.
The data I'm getting back from the php call is:
{
"page":"1",
"total":1,
"records":"10",
...
8
votes
1answer
2k views
JqGrid How to change width of edit form?
I don't understand how to change width of edit form in JqGrid. I found option 'width' but I don't know how to use it (there isn't example).
8
votes
5answers
10k 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 = ...
8
votes
5answers
6k views
jqGrid Refreshing Local Data (JSON Object)
I'm trying to use jqGrid with local data and I'm finding a couple of issues:
I'm initializing the thing like so:
function refreshGrid($grid, results)
{
$grid.jqGrid({
data: results,
...
8
votes
4answers
26k views
jqgrid reload grid after successfull inline update / inline creation of record
I'm wondering how I can trigger reloadGrid after an inline edit of a row.
<script type="text/javascript">
jQuery(document).ready(function(){
var lastcell;
...
8
votes
6answers
7k views
How can I get JQGrid to recognize server sent Errors?
I have a jqgrid that's functionning very well.
I was wondering is it possible to catch server sent errors ? how Is it done ?
8
votes
4answers
12k views
How can I hide the jqgrid completely when no data returned?
I'm having a heck of a time trying to only display my jqGrid when records are returned from my webservice. I don't want it to be collapsed to where you only see the caption bar either, but if that's ...
7
votes
5answers
342 views
How can i get jqgrid frozen columns to work with word wrap on
I am using the latest jqgrid 4.3.1 and i am trying to use frozen columns.
The issue is that i have overridden the default css to support word wrap (css solution can be seen in this question) in ...
7
votes
3answers
3k views
ASP.NET MVC 2.0 Implementation of searching in jqgrid
Hi I am trying to use the single column search in jqgrid using MVC 2 IN .NET (VS 2008) this is the code I have so far but I need an example to match it with or a tip of what I am missing
...
7
votes
2answers
2k views
LINQ Dynamic Query Library
I am building an ASP.Net MVC 3 application with Entity Framework 4. When the two pieces of code below are executed, both variables (query1 and query2) have a return type of
...
7
votes
1answer
1k views
jqGrid throws “Uncaught Syntax error, unrecognized expression: #”
Hello everyone :) I'm sorry for the long code listing, but I'm not sure exactly where I'm screwing up here. I'm writing an internal-use-only jquery plugin for editing access control lists.
A ...
7
votes
3answers
7k views
JQGrid, change row background color based on condition
I have the following jqgrid that uses the jquery ui theme imported to my master page.
$("#shippingscheduletable").jqGrid({
url: $("#shippingscheduleurl").attr('href'),
...
7
votes
2answers
4k views
jqGrid: Disable form fields when editing
I'm currently developing a web application designed for the administration of vending machines and such.
I decided to use jQuery, jQuery UI and jqGrid for this project, so I can easily provide a great ...
7
votes
2answers
7k views
Jquery JQGrid - How to set alignment of grid header cells?
Is it possible to align grid column headers in jqgrid? eg align left right or center?
In the jqrid documents http://www.trirand.com/jqgridwiki/doku.php?id=wiki:colmodel_options it says:
align: ...
7
votes
3answers
3k views
jqGrid highlight the new added row
Is that possible to highlight the new added row in jqGrid. The highlight effect is something like this http://docs.jquery.com/UI/Effects/Highlight
So, when the new row is added, the row will be ...
7
votes
4answers
22k views
Change style of jqGrid
I am using jqGrid 3.5. Can I change the style and look of the grid and make it more beautiful using jQuery or custom CSS or something else?
7
votes
3answers
20k views
Retrieving selected rows from jqGrid
I have jqGrid 3.5 (full) mostly working. I have it retrieving data with the multi-select option on. The one part I can not get to work is getting the selected rows. The docs state:
To obtain ...
6
votes
2answers
183 views
How to use jqgrid frozen column for different screen widths?
I have a JQgrid grid with a lot of columns. Some people have very wide monitors and some have small laptops.
I want a solution where the folks that have wide monitors can have the grid stretch as ...
6
votes
1answer
748 views
Custom aggregation/grouping in jqGrid
Overview
I need to somehow customize the jqGrid plugin, either by clever tricks, hacks, or modification of the plugin, to support the following type of aggregation/grouping.
I would be very grateful ...
6
votes
2answers
493 views
Add numeric pager to jqGrid
Does anyone know of a way to set up jqGrid to use a numeric pager?
Instead of Page 1 of 20, I want to have the paging be like 1,2,3,4 > >> and when I click on 4 it would something like << < ...
6
votes
1answer
2k views
How to implement wordwrap on jqGrid which works on IE7, IE8 and FF
How to implement wordwrap on jqGrid which works on IE7, IE8 and FF, while also having column-resize work (grid aligns correctly).
Tried to innerwrap content on each td with a div of specific width ...
6
votes
2answers
2k views
Get the jqGrid colModel
How can I get the entire colModel for a jqGrid element? I've gone through the source code a bit and also played around with some tests, but nothing seems to return the actual array.
Thanks.
6
votes
1answer
4k views
JqGrid - AfterInsertRow, setCell. programmatically change the content of the cell
I am new to JqGrid, so please bare with me. I am having some problems with styling the cells when I use a showlink formatter.
In my configuration I set up the AfterInsertRow and it works fine if I ...
6
votes
3answers
3k views
How to get select's value in jqGrid when using <select> editoptions on a column
I have a couple of columns in jqGrid with edittype="select". How can I read the option value of the value currently selected in a particular row?
e.g.: When I provide the following option, how do I ...
6
votes
3answers
5k views