Questions tagged [jqgrid-php]

Tag for the PHP wrapper of jqGrid.

Description

Tag for the PHP wrapper of jqGrid.

For more information, visit: http://www.trirand.net/default.aspx

199 questions
0
votes
1 answer

Jquery Jqgrid display image in grid?

This is my code:
dr.linux
  • 752
  • 5
  • 15
  • 37
0
votes
1 answer

Column text color when row takes focus (is clicked)

I use jquery and jgrid for create a grid in php. I have modified the color of a column of my grid, using: $grid[“loadComplete”] = "function(ids) { onloadFunction(ids)"; The onloadFunction function is as follows: function onloadFunction(ids) { …
0
votes
0 answers

How to dynmically make a cell editable in jqGrid PHP

I have a jqGrid PHP project where I have been able with the below code to make rows background color and editable = false, based on the value of a cell in that row. $rowattr = <<
Adri Cist
  • 37
  • 1
  • 6
0
votes
1 answer

jqgrid php: how to report an error in dialog

I'm currently using the jqGrid php implementation with a manual transaction for adding a record in the grid. E.g.: $oper = jqGridUtils::GetParam('oper'); if ($oper == 'add') { $grid->trans = false; // disable the transaction try { …
galli2000
  • 478
  • 5
  • 14
0
votes
0 answers

How to add Multiselect dropdown filter in jqGrid

I am trying to add the multi-select filter to my "PROVIDER" column in the jqGrid. I am able to add the normal select filter with the single selection but now I am converting it to the multi-select filter. I referred to a few old posts here and tried…
user8268874
0
votes
0 answers

jqGrid - Keep checkbox selected on grid reload when editing form

I have a form that utilizes jqGrid to display personalized info for the user to select from. Everything works fine however on the "Review" page there is an option to edit the form. When you click edit and go back into the form selections all values…
svsdnb
  • 144
  • 1
  • 17
0
votes
1 answer

before submit event in jqgrid

I hav got 2 jquery date picker fields in my form.One for start date and another for end date. i want to check whether start date is less than end date . for that i used beforesubmit event5 of jqgrid but how to check it using javascript and am using…
0
votes
1 answer

Double WHERE query on server side to create jqgrid json

I use server side to create json on jqgrid. My problem is when I want to include WHERE into mySQL query, because WHERE has been used in searching operator. The server side code is
Candra
  • 9
  • 4
0
votes
1 answer

jqGrid editurl return value

I currently have a jqGrid that edits data in the database using editurl. How do I do actions after receiving a reply from the server, for example check if the updated succeeded, or a message returned by the server. if there's no jqGrid function that…
laurenceputra
  • 317
  • 2
  • 5
  • 16
0
votes
1 answer

jqGrid. Grand Total with million rows from a REST

How to show Grand Total with million rows from a REST? Documentation has the example when all data is loading once with option loadonce: true but that is a very small number of rows. How can I attain the same with partial data loading?
Serhii Popov
  • 3,326
  • 2
  • 25
  • 36
0
votes
1 answer

In jqGrid's textarea where is the Scroll Bar?

I want to know how to display the scroll bar in jqgrid. i use the jqgrid for display some data with textarea colModel:[ {name:'mob_id',index:'mob_id', editable:false,width:30}, {name:'cse_id',index:'cse_id', editable:true,…
zahir
  • 591
  • 1
  • 5
  • 5
0
votes
2 answers

JQGrid date format Issue: Want to convert 30-JUN-2020 to 06/30/2020

I wanted to format the below source date to target format in JQGrid, I tried several formats but not able to do so. Please help. I am getting "01/30/2020" Source Format : 30-JUN-2020 Target Format : 06/30/2020 Code: { label: '
Ganesh
  • 903
  • 1
  • 8
  • 18
0
votes
1 answer

Error in exporting pdf in JQgrid

I want to export the details in form of pdf file.Pdf are downloaded but only headers means product,quantity,price ,total only missing the body of the content means product details. $("#list_records_view").jqGrid({ url:…
Valar
  • 13
  • 6
0
votes
1 answer

PHP jqGrid Not Returning Data

I setup a very basic jqGrid on my Mac dev envrionment. Everything works correctly. The grid renders and the data loads no problem. When I moved the whole site to my Windows machine, the site works fine except for the jqGrid. For some reason the grid…
Jeremy
  • 53
  • 1
  • 7
0
votes
0 answers

How to enable partial grouping in jqGrid

I need to group my jqgrid partially. I have a case if the grouping column has more than one record, I have to group otherwise I need to show it directly. Example : In the below example groupingId is the group column, need to group the first 2…