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
2 answers

not able to get the actual record id

I have create the the jqgrid which loads the data from the server , i am able to view the data in a grid , but when i try to extend and fire up onclickSubmit of $.jgrid.del i am not be able to get the actual record id (which is in my case it is 101…
Hunt
  • 8,215
  • 28
  • 116
  • 256
0
votes
1 answer

add extra parameter in edit url using form dialog

I have create a gird uing jqgrid and in that i am using form dialog to add , edit and delete record. but in Edit Record i want to pass the id of a record along with the url even though form data will contain that , as i am using RESTful url so to…
Hunt
  • 8,215
  • 28
  • 116
  • 256
0
votes
1 answer

php variable in javascript variable jqgrid integration

I've a php function to get some data from mysql database: function get_persons() { $result=dbquery("SELECT id,name,surname FROM ".DB_PERSONS." ORDER BY id ASC"); while ($person = dbarray($result)){ $id=$person['id']; echo…
dr.linux
  • 752
  • 5
  • 15
  • 37
0
votes
1 answer

jqgrid icon issues

I have created Master/Detail grids and am able to load both grids properly. I have enabled add/edit/delete from both grids, but the icons are unselectable. The icons appear displayed bunched together closer also. Any ideas? I have other grids…
Jeff
  • 15
  • 1
  • 4
0
votes
1 answer

jqGrid not Refreshing after Search

I had a jqGrid that was working perfectly with complex searches, and then it inexplicably stopped updating the grid values after submitting a search filter. I have NetBeans PHP IDE setup as a debugging environment and I can confirm that the data is…
Rat
  • 81
  • 2
  • 11
0
votes
1 answer

I want to set the style properties of the cell in treegrid

here is my code jQuery("#tree").setCell (i,3,'',{"style='width':'18px'"}); and when i select the cell from firebug the cell looks like this:
KingMaker
  • 199
  • 6
0
votes
1 answer

removing columns from jqgrid

I would like to add my own column names in jqgrid and also i want to prevent the column names that is automatically added by php-jqgrid according to sql query. I am using php-jqgrid. Actually jqgrid getting the column name from mysql table's column…
Bajrang
  • 8,361
  • 4
  • 27
  • 40
0
votes
1 answer

set column names my own in jqgrid

I would like to add my own column names in jqgrid and also i want to prevent the column names that is automatically added by jqgrid according to sql query. I am using this code to do that, but its also getting the name of columns which i have not…
Bajrang
  • 8,361
  • 4
  • 27
  • 40
0
votes
2 answers

increase the width of jqgrid table

I am new in jqgrid and I would like to increase the width of jqgrid. I have increased the column width but the grid width is not increasing. I am using php jqgrid. Is there any parameters to pass this function :=…
Bajrang
  • 8,361
  • 4
  • 27
  • 40
0
votes
2 answers

jqgrid date formatter example?

Does anybody have an example of using the date formatter with a server side database, or can you point me to something to help?
Mark Jones
  • 1
  • 1
  • 1
  • 2
0
votes
2 answers

How to resize jqGrid on splitter drag

I have some problems with implementing jqGrid with jQuery layouts. The problem is with resizing the grid on browser window resize. The height is working correctly but my problem is width. The grid width won't refresh sometimes. Also, if I close the…
Deks
  • 21
  • 1
  • 5
0
votes
2 answers

How to make jqGrid fluid height?

For a long time I am looking for an answer to how to make the fluid height in jqGrid, but I still have not found it. So, I need fluid height. I know how to make fluid width: jQuery(window).resize(function(){ gridId = "grid"; gridParentWidth =…
Deks
  • 21
  • 1
  • 5
0
votes
1 answer

Jqgrid addform and editform option hack?

Is there anyway to set a column lke that: Show in editform => True Show in addform => False Do you have any suggestions to do this? I know "editable" option but doesn't give me what i need...
dr.linux
  • 752
  • 5
  • 15
  • 37
0
votes
2 answers

jqgrid autorefresh subgrid problem

Currently I use this code for refreshing the grid: setInterval(function(){ jQuery("#grid").trigger("reloadGrid"); },10000); It works well. But I need a solution for expanded subgrids. When the grid refreshed the expanded subgrids are closing. Is…
dr.linux
  • 752
  • 5
  • 15
  • 37
0
votes
1 answer

Jqgrid multiselect limit?

Is there anyway to set quota to multiselect rows? I mean how i can do : If multiselectedrows count > 5 alert ("You Can't Select More Than 5 Rows"); I'm already checked the manual but there is no option to do this. I'm a newbie on Js/JQuery, so i…
dr.linux
  • 752
  • 5
  • 15
  • 37