Hello,
Problems related to virtuall scrolling can be resolved only if there is a link to the problem and a source code is loaded (not minified)
Thank you.
Kind Regards
Tony
Hello,
You can disable the build in hovering of rows with:
hoverrows : false and write your own procedure after the grid is created something like this
Hello,
Sorry, but I do not understand.
Title can be disabled if you set a parameter caption with empty string
Regards
Tony
Hello,
I'm not sure that triggering the grid in loadComplete is a good solution at all.
It could happen so thet you will have not ending cycle of triggering and load complete.
I think setTimeout function can be implemented in loadComplete event, but you will need to be sure that the non ending cycle will not occur.
Kind Regards
Tony
HEllo,
Check first if the grid load without using the ajax call. Just call the grid creation.
Also be a sure that the table whare the grid is created exists in the modal popup.
Regards
Tony
Hello,
Please check your code again. Also check if you have loaded all the needed JavaScript and CSS files.
In order to isolate the problem begin with very simple example.
Also I see one time you use
.jqGrid('navGrid', '#' + pagerID, { add: false, edit: false, view: false, del: false, refresh: false, search: false })
but after this
jQuery(“#” + tblName).navButtonAdd('….
PLEASE TURN OFF THE $.jgrid.no_legacy_api option like this
$.jgrid.no_legacy_api = false
or use
jQuery(“#” + tblName).jqGrid('navButtonAdd', ….
Kind Regards
Tony
Hello,
Yes this is partial true, ther is diffrence on this
1. prmNames: {id: “pack_id”} with this we define the name of the id which will be posted to the server when we perform CRUD Operations.
2. colModel:[
Hello,
Please follow this instructions first:
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:first_grid
And then implemetnt other things.
Kind Regards
Tony
Hello,
There is no difference where this is used.
Please check the Oleg's exmaple again.
Kind Regards
Tony
Hello,
I do recommend you to check the dates server side and use the success function to notify the user if the dates are ok.
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:inline_editing
Note that in your case you should use this evenent in both saveRow and editRow
Kind Regards
Tony
HEllo,
Yes it is possible and you can do what you want logic. The idea is to use the onSelectRow event.
Go into the demo
http://trirand.com/blog/jqgrid/jqgrid.html
Open the Row editing tree item and then Using Events example.
Replace the onSelectRow event with this:
onSelectRow: function(id)
{ if(id && id!==lastsel) {
Thank you Reg
Tony
Hello,
I could not reproduce this.
Be a sure you use the last 3.8.2 version.
Also in order to see that everthing work correct go into the demo
http://trirand.com/blog/jqgrid/jqgrid.html
Open the New since beta 3.0 tree item and use the Custom multiselect example.
Select some rows and do get selected rows – the output is correct.
Also be a sure you have uniquie row id into the grid. (the most common error )
Kind Regards
Tony
Hello,
Thank you for trying jqGrid.
Mostly the problem here is connected with some important steps
1. Check your url if it is correct.
2. See if you have the right connection to the database. Check your username and password.
3. If possible use FireFox with installed FireBug. – Open the console tab and see the response from the server.
If you do this you will find easy where the error is.
Kind Regards
Tony
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top