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

Full example of CRUD operation for 3 level nested subgrid

I want to implement a jQgrid of 3 level nested subgrid, I am able to create the 3 level nested subgrid, however, the CRUD operation seems to be at flaw. Kindly help me if anyone has Full example of CRUD operation for 3 level nested subgrid.
DHF
  • 35
  • 1
  • 7
0
votes
2 answers

JQGRID: Add sort option in the grid for all column

I need to add sort option in the grid for all column ('Incident key','Date','State','Incident no','FF death', 'OTH death','Property Loss','Cont Loss','Fire Cause') separately. I tried but its not working, please do fix sorting in my code and answer…
Prinston J
  • 105
  • 1
  • 16
0
votes
1 answer

how to customiz data before send to server in jqGrid search

i'm starter in jqGrid. i write this code for Genereate Grid grid.jqGrid({ url: 'jQGridHandler.ashx', postData: { ActionPage: 'Report5',type:'Fill' }, datatype: 'json', height: 530, colNames: ['id','UnitPrice'], colModel: [ …
Pouya
  • 1,908
  • 17
  • 56
  • 78
0
votes
1 answer

Jquery form serialize - Multiple select on jqgrid

I have a jqGrid where I am sending a string value to the colmodel for a particular property called "equipments". Everything is ok so far as the value is showing perfectly on the grid. I have also added an Add and Edit button and all is well and…
Faiyet
  • 5,341
  • 14
  • 51
  • 66
0
votes
1 answer

How to custom jqgrid search dialog

i'm starter in jqGrid. i have 4 feild , Id,Name,Date and Age. i Want when user click in icon search and appear search box when select Date item for search Now Appear one textBox for user enter your date, but i want Appear two textBox for user enter…
Pouya
  • 1,908
  • 17
  • 56
  • 78
0
votes
1 answer

jqGrid: How to use single search feature?

How do I use the single search feature of jqGrid? Im following the example "Single Search" under "New in version 3.7". jqGrid Demo Page My script is almost exact save the queries used to retrieve data from the database but my script doesn't do the…
JohnSmith
  • 1,457
  • 2
  • 18
  • 27
0
votes
1 answer

JQGrid for PHP Replacing link text with icons

I am using JQGrid for PHP. See homepage here I have added Edit and Delete to a column like this: $g->set_actions(array( "add"=>false, // allow/disallow add "edit"=>true, // allow/disallow edit "delete"=>true, // allow/disallow delete …
Satch3000
  • 47,356
  • 86
  • 216
  • 346
0
votes
1 answer

Ajax Data Result to jqgrid display

I have this result from AJAX call I want to pass it to jqgrid. The format is exactly the same normal jqgrid call. I dont know why its not working, any help is greatly appreciated. …
genpet
  • 453
  • 1
  • 9
  • 20
0
votes
1 answer

JQGrid showlink styling not working

I'm using JQGrid and need to create a hyperlink in one of my columns. I've used the predefined formatter for showlink and the hyperlink is working fine. However the visual is not looking nice as it is creating some sort of rectangle and has a large…
Mart Coul
  • 490
  • 6
  • 15
0
votes
2 answers

jqGrid: How To Delete Row/s From "navButtonAdd" And "delGridRow"?

I've encountered a problem with jqGrid datagrid. I need to delete one row or more with a button "Delete". Here my code: $grid.navGrid('#pager', { edit: false, add: false, del: false, search: false }); $grid.navButtonAdd('#pager', { caption:…
D4nt3
  • 21
  • 1
  • 4
0
votes
1 answer

JQgrid cell tooltipl as Html

I am displaying a column in Jqgrid with divs and html tag, for example it is
Click here to order tjos service.
Note: The service is disabled
. When I hover my pointer to the cell it doesn't display the content properly which…
Alaa Osta
  • 4,249
  • 6
  • 24
  • 28
0
votes
1 answer

jQgrid beforeProcessing doesn't fire

I am using jqGrid 4.0.0, beforeProcessing never gets fired for each postBack, it has not been triggered at all, please assist! $('#jqgInventory').jqGrid({ autowidth: true, caption: 'Inventory', datatype:'json', forceFit: true, …
Alaa Osta
  • 4,249
  • 6
  • 24
  • 28
0
votes
1 answer

Jqgrid Get postData

I would like to export only the data from jqgrid. So basically I already have a bound grid with data and I want to get the data as json string so I can call BindGridModel(data) later on and bind the data without going back to the server only from…
Alaa Osta
  • 4,249
  • 6
  • 24
  • 28
0
votes
1 answer

JqGrid GridView issue

If I set the gridView property to true, the table height is not set correctly, it is showing empty space beneath the last record. I think it is completing the rowNum of the last page. Is it a bug or I am missing a property to set? This is only…
Alaa Osta
  • 4,249
  • 6
  • 24
  • 28
0
votes
1 answer

Erros in implementing inlinenav in jqgrid

i am using jqgrid with codeigniter. i am implementing inlinenav using following snippet. here is my code : jQuery("#contactlist").jqGrid('navGrid','#contacttoolbar',{view:false,edit:false,add:false,del:false,search:…
Ravi Dalal
  • 114
  • 2
  • 12
1 2 3
13
14