Hello,
Thanks for this. Also the feature is discussed many times here and it seems that this one that should be added in 3.7 release.
Best Regards
Tony
Hello,
1. No direct method, but you can do it with single command after the grid is created
$(“.ui-jqgrid-hdiv”, “#gbox_”+mygridid).hide();
where mygrid is the id of the grid
2. Currently no.
Best Regards
Tony
Hello,
Maybe you do not read the right section in the docs.
If you pass a second parameter to editRow – e.g true you can save tha data with enter key
See here:
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:inline_editing#editrow
Best Regards
Tony
Hello,
From what I see into the code you call every time the creation of grid when a tab is selected.
Here you can solve the problem diffrent ways
1. Use GridUnload method before constructing the grid – e.g
$(”#volunteer_grid”).GridUnload();
$(”#volunteer_grid”).jqGrid({…});
2. Check to see if the grid is already created and if so just open a tab (or maybe trigger the grid to refresh the data)
var maygrid = $(”#volunteer_grid”);
if(mygrid[0].grid) {
// refresh it mybe
} else {
// create grid
}
Best Regards
Tony
Hello,
What you mean with this? Do you have a example?
What you use grid as subgrid or “pure” subgrid”?
Regards
Tony
Hello,
They work well, but since there is no value in the add form for the id we can
Hello,
Welcome Enrico!
Also you can use th onPaging event to do the things what you want.
Also look at events in the wiki:
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:events
Best Regards
Tony
Hello,
They are present with just the same names.
I will see into the docs if they are missed.
Best Regards
Tony
Hello,
What you mean with “none of them work with IE” ?
What is happen?
For IE you maybe you will need not to use innerWidth instead of width
Regards
Tony
Hello,
You can grab the fix from GitHub and if you have installed ant you can build the min version
Also I plan to publish a bug fix at end of this week.
There will be no post for this, so you will check the download page.
Best Regards
Tony
Hello,
As usual this does not help you.
Please – post your code
Tony
Hello,
If I understand right – could you please look at demo page
New in version 3.5 => Integrated Search Toolbar I think that this is what you mean
Best Regards
Tony
Hello,
Use beforeShowForm in add mode like this
beforeShowForm : function (formid) {
$(“#pData, #nData”,formid).show();
}
Regards
Tony
Hello,
Did you mean to see the buttons prev/next in Form editing when we are in add mode?
This is possible, but you will have trouble when you use them.
Regards
Tony
Hello,
I think you will need to set datefmt option in colModel. Check the docs:
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:colmodel_options
Regards
Tony
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top