10,799 questions
-1 votes
0 answers
27 views
Print excel/pdf in jqgrid-php from an abstact grid
My project had too many grid pages and it was quite the mess so I decided to make one sole generic grid file with configurations and each time the same page loads different configs depending on the ...
0 votes
0 answers
13 views
How do I pass the x,y coordinates in a line graph in Jqgrid?
How do I pass the x,y coordinates in a line graph in Jqgrid? I need to create a sawtooth graph and I couldn't. Example: I have these coordinates (1, 2), (1,3), (2, 2), (2,3) I can't build the graph ...
1 vote
1 answer
72 views
jqgrid inline edit conflicts with form editing
I'm using free jqGrid form editing (navGrid) with also inline editing (inlineNav) only for editing using Enter and Esc keys. $('#gridId').jqGrid('navGrid','#pagerId', {edit: true, add: true, del:...
0 votes
1 answer
21 views
Selecting and scrolling to jqgrid row after update and add
Is there a way to select and scroll to newly added or updated row in jqgrid? setSelection does not do either. I tried putting a timer on it..but still no go.
1 vote
1 answer
70 views
Jqgrid performance slow at large dataset
I'm trying to retrieve data from database to show in a jqgrid. This code works well and fast for small data. But when it show thousands of data it gets real slow, like more than 2 mins which is an ...
1 vote
0 answers
45 views
Problem refreshing Jquery grid upon update
I'm having trouble with a PHP invoicing app that I inherited from a new client. On the invoice page there's a Jquery Grid that manages the details of the invoice (quantity, price, description, total ...
0 votes
0 answers
51 views
jqgrid sortable library not correctly loading to my node.js-fuelled front-end
I have a web-app running on laravel-blade as front-end (and laravel as back-end obviously but this is not the case) and I recently decided to move all my javascript content from the blade files to the ...
0 votes
0 answers
22 views
Default value of select lists does not filer for JQGrid
I have a grid with search toolbar. One of my columns has a dropdown box as search field type and. The column is defined like this: { "searchoptions": { sopt: ['eq', 'ne'], defaultValue: &...
0 votes
1 answer
34 views
jqgrid date formatter from and to formats
I have the date coming in as 30-Oct-24 and I need it displayed as 30-Oct-2024 and also need to be able to sort by date I have this code but it's not working and showing gibberish strings instead ...
0 votes
0 answers
24 views
jqgrid Shows No Records even after adding a row
I am incorporating new rows into jqGrid utilizing the AddRowData method. There have been instances where it displays "No records" alongside the newly added records, as illustrated in the ...
0 votes
1 answer
54 views
jqGrid - Show Page Numbers In Export To PDF
I'm using Guriddo jqGrid JS-v5.8.2 with pdfmake 0.2.7 I can print the jqGrid to PDF, but I want the print out to show page numbers in the footer for example. Here's what I have $("#...
1 vote
1 answer
66 views
dynamically modify the value in jqgrid
I have two grids, in first I select a value and in second I display the same row but make it editable. It looks like this: jQuery("#GridSelectedProducts").jqGrid({ height: '100%', ...
0 votes
1 answer
40 views
Attempting to sort jqGrid locally still calls server side sorting functionality
I have a jqGrid that is filled with data from the server similar to below: $("#dataGrid").jqGrid({ url: 'url/load.json', datatype: 'json', mtype: 'POST', ... ...
0 votes
1 answer
50 views
JQgrid using http instead of https to load content in OnSelectGrid function, causing Mixed Content Type error
One of the sites I am working on uses JQgrid to manage a grid of items on its administration page. Selecting one of these items loads up a modal popup that allows said item to be edited. The HTML that ...
0 votes
1 answer
55 views
jqGrid filterToolbar Searching not excluding hidden columns
I am using jqGrid [3.7.1] and on that using below code to hide some columns jQuery("#gridId").jqGrid('hideCol', ["Col5", "Col7", "Col9"]); And we also have ...