Questions tagged [free-jqgrid]

Free jqGrid is the fork of jqGrid. Its development is based on jqGrid 4.7 (before changing of license agreement). It can be used under MIT/GPLv2 license.

Starting with version 4.7.1 jqGrid is now Guriddo and it can be used under Creative Commons Attribution-NonCommercial 3.0 License (see the prices here).

Free jqGrid is the fork of jqGrid 4.7.0 and it can be used under MIT/GPLv2 licenses. It's available on GitHub here and from CDNs, from npm, bower, NuGet and Maven Central. The corresponding Wiki documentation can be found here and here.

552 questions
5
votes
1 answer

How to receive dynamic data in Web API controller Post method

jqgrid posts json data in POST request buffer as {"headerData": { "Tasudok": "134", "Kuupaev": "2015-11-23", "Dokumnr": "135319" }, "rowData": { "Toode":"", "Kogus":"0.0000", "Nimetus":"öäölä<a", "_rowsum":"0.00", …
Andrus
  • 26,339
  • 60
  • 204
  • 378
5
votes
2 answers

JQGRID , get all rows after filtering

I am not able to get all rows { paginated } after filtering JQgrid . I tried > var myData = grid.jqGrid('getGridParam', 'data'); var myData = grid.jqGrid('getRowData'); but first option gives all rows and these are unfiltered rows. second one…
Bhupendra
  • 1,196
  • 16
  • 39
4
votes
1 answer

jqgrid - inline editing, post only changed data

I have a jqGrid where I would like to check for cell data and only post the columns of which the data has changed. Consider this is my colModel colModel: [{ name: 'I_PK', index: 'u.I_PK', align: 'right', editable: false, sopt:…
Dipen Shah
  • 1,911
  • 10
  • 29
  • 45
4
votes
1 answer

jQgrid toolbar searching - dynamically remove search box from any column

I am using jqgrid version 4.4.4 and right now I am facing one problem related to toolbar searching. As I mention in heading, I want remove search box of toolbar search from any column "dynamically" during or after rendering a grid. I google it but I…
Rahul More
  • 615
  • 3
  • 13
  • 41
3
votes
1 answer

how to enable enter in jqgrid advanced search window

Pressing search button in jqgrid toolbar opens advanced search window. Pressing enter key does not start seach. To start search, search button needs to be clicked. How to allow enter key press to start search like in clicking in search button ?
Andrus
  • 26,339
  • 60
  • 204
  • 378
3
votes
1 answer

jqgrid and jqPivot: How to remove grouping when xDimension have multi value?

I'm using free-jqgrid with jqPivot. I want to change display of xDimension in pivot grid. In document: These values are the cells from source data that appear as rows in the grid. When more that one object element is set a grouping appear …
Tommy1209
  • 179
  • 3
  • 12
3
votes
1 answer

How to alter data received from the server before processing by jqGrid

Scenario of what I'm trying to achieve: I retrieve some data from the server I loop the data and add/alter values for some fields The data is being displayed in a grid The user locally edits the data When finished, the user submits the entire grid…
Alexandru Severin
  • 6,021
  • 11
  • 48
  • 71
3
votes
2 answers

JQGrid - Vertical scroll not working on Frozen columns

I have a JQGrid having more than 20 columns. So I kept first 3 columns as frozen and the grid does not have pagination. So as per requirement, we added height of the main div so that user can scroll up/down. Now after adding frozen columns the…
SK.
  • 1,390
  • 2
  • 28
  • 59
3
votes
1 answer

How to select row from ajax data

Free jqgrid contains button in each row. Clicking in button makes ajax call which returns customer list based on clicked row column value. User can select customer from this data. Selected customer name and id should written to jqgrid row. I tried…
Andrus
  • 26,339
  • 60
  • 204
  • 378
3
votes
1 answer

How can I get the selected search filter in onCellSelect in free jqGrid?

I have a grid in which I am providing search when the user highlights the text they want to filter. The onCellSelect looks like this: onCellSelect: function(row, col, content, event) { var cm = grid.jqGrid("getGridParam", "colModel"); if…
Dipen Shah
  • 1,911
  • 10
  • 29
  • 45
3
votes
1 answer

free jqgrid custom formatter lost after sorting or filtering

I am using free jqgrid 4.13.0 I wrote a custom formatter, but unfortunately my cell contents of that column are always lost after sorting the table or filtering. I am probably doing something wrong in the formatter function, but haven't really…
Preexo
  • 2,102
  • 5
  • 29
  • 37
3
votes
1 answer

How to force jqGrid 4.10.1-pre to encode ' character always

Free jqgrid uses setting autoencode: true grid definition contains: $grid.jqGrid({ url: '/admin/API/Entity', datatype: "json", editurl:'/admin/Detail/Edit' In inline edit…
Andrus
  • 26,339
  • 60
  • 204
  • 378
3
votes
1 answer

how to save result from number input type in jqgrid form editing

Free jqgrid has input type=number column defined as { name: "amount", width: 62, template: "number", formatter: "number", formatoptions: { decimalSeparator: ",", thousandsSeparator: " ", decimalPlaces: 4, defaultValue: '0.0000' }, …
Andrus
  • 26,339
  • 60
  • 204
  • 378
3
votes
1 answer

jqgrid - toppager[ toolbar icons] comes in multiple rows

I'm using latest free-jqgrid 4.9.2 My toolbar(toppager) buttons goes to next line though loads of space there in grid width. Please find attached screen shot. Any reason ? I tried the below CSS code as well, but no luck; /*Toolbar customization*/ …
Sundar
  • 119
  • 1
  • 16
3
votes
1 answer

jqGrid filterToolbar with local data

I have a jQgrid that loads data initially via an ajax call from backend(java struts). Again, this is one time load and once loaded, the jqGrid should operate on the data available locally. Initially, datatype:json and once loadcomplete, set…
Faz
  • 534
  • 1
  • 9
  • 27
1
2 3
36 37