Hi everybody who use jqGrid!
I am a new on stackoverflow.com and it seems to me that a lot of peoples who use stackoverflow.com are not only the persons who have a problem which must be quickly solved. A lot of people read stackoverflow.com to look at well-known things from the other side. Sometime perhaps the reason is a self-training ...
Anyone who has tried to use JQGrid a Jquery plugin with django?
Please share your knowledge/code samples
...
I'm using jqGrid for a table input and setting up the url as a servlet which will deal with the GET and POST requests and save the rows to a Java object.
I'm using webwork web framework and I was wondering how I can get access to the object that the servlet is saving the data to.
One way I have thought of is to just call the GET metho...
I am using jqgrid. We are building a dashboard functionality with jquery. Different application just have to register respective application page and dashboard will render that page.To achieve this we are using jqgrid as one of the jquery plugin. Following is my codeenter code here
var ph = '#' + placeHolder;
var _prevSort;
$.aj...
I have just started working on asp.net mvc and jqgrid.
I have a calendar which returns a date, a multiselect list box and apply filter button outside of the grid. Is there a way to pass these filter values to the server-side actionresult GridData() based on the selected date and multiple selected values and also it persist while pagin...
Hi fellow programmer
I want to change the pointer to hand when hovering over jqgrid's rows
Is there an API for that?
...
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 action), its content-type is always:
application/x-www-form-urlencoded; charset=UTF-8
and I would like it to be:
application/json; charse...
I was testing my jqgrid and when I was attempting to add details through jqgrid's modal window I came across the following error in my firebug console.
Access to property denied" code: "1010
checkValues("2010-04-20", 5, table#list.ui-jqgrid-btable)grid.common.js (line 441)
postIt()grid.formedit.js (line 794)
anonymous(Object originalEve...
Looks like the default toolbar for jqGrid is always at the bottom. Buttons like Next/Prev page and the dropdown to select the number of rows per page will always show at the bottom of the grid.
I found a way to add a custom top toolbar and push custom buttons into it.
What a really need is a way to add default functionality (like pagin...
I have a jqGrid with which users will select records. A large number of records could be selected across multiple pages.
The selected rows seem to get cleared out when the user pages through the data. Is it up to the developer to manually track the selected rows in an array? I'm fine doing this, but I'm not sure what the best way is....
I have a footerrow in my jqGrid where I sum up the values in some of the columns. I set the footer using the 'footerData' function when the grid has completed loading. This requires the 'footerrow' property in the grid-options to be set to 'true'. Some of the columns which I don't sum up have CSS applied to them (to show some icons in th...
I'm using jqGrid for a JIRA plugin and have included the jquery and jqgrid libraries as web resources.
I've set up a column in jqGrid as required and when I try to submit the form with the respective column empty I get an error in firebug: jQuery.jgrid is undefined
jQuery.jgrid is null but $.jgrid has the correct data.
Does anyone kno...
I have a jQueryUI dialog (#locDialog) which has a jqGrid ($grid) inside it. When the Dialog opens (initially, but it gets called whenever it opens), I want the $grid to resize to the size of the $locDialog. When I do this initially, I get scrollbars inside the grid (not inside the dialog).
If I debug the code, I see the width of the $...
Here is my code
$(document).ready(function () {
$('#jqgProducts').jqGrid({
url: '/Home/GridSampleData/', // url from wich data should be requested
datatype: 'json', // type of data
mtype: 'GET', // url access method type
colNames: ['userid', 'username', 'email', 'cont...
Hi ,
I am using jqGrid 3.6.4 and a jquery 1.4.2 . in my sample i am getting following json data format & i want to map these json data into rows of a jqgrid
{
"page": "1",
"total": 1,
"records": "6",
"rows": [
{
"head": {
"student_name": "Mr S. Jack ",
"year": 2007
},
"sub": [
...
The buttons I have added to the rows still post back even if I specifiy not to do so in the onclick method of the button (onclick=' return false;'). I supose its the grid doing the post back? I am tring to prevent the postback and show my own custom popup forms.
gridComplete: function(){
var ids = $('#jqGridControl1').jqGrid('getDataI...
I need to set the Options for Jqgrid like toppager, forceFit for which the "Can be changed?" value is set to "No" hence i tired it to set by adding it this way
jQuery(document).ready(function() {
jQuery("#list").setGridParam({ forceFit: true, toppager: true }).trigger("reloadGrid");
jQuery("#list").jqGrid({
url: '<%= Url.Action("Grid...
Hi guys, i was trying to do a Cell Editing based on this documentation
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:cell_editing
I have two questions:
How can i get the Index of my row posted to the server:
The information i'm getting posted is the following:
a) value of the cell
b) RowId
The thing is that the rowId doesn't h...
Hi,
I am using jqGrid for my data table solution. Below are the configuration codes.
$(function() {
$("#submitInput").click(function() {
alert("I am called...")
jQuery("#list").jqGrid({
datatype: "json",
url: "http://localhost:1201/admin/someURL.htm",
mtype:"POST",
height: "auto",
colName...
I use jqGrid with many columns contains Boolean information, which are displayed as checkboxes inside of table (see http://www.ok-soft-gmbh.com/VerticalHeaders/TestFixedO.htm as an example). To display information more compact I use vertical column headers. It works very well and works in jqGrid in all browsers (see my discussion with To...