Hello,
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:inline_editing
Check carfully the order of the parameters passed to the editRow.
Regards
Tony
Hello Corrado,
The table that contain the header is created dynamically, so the class scrollSubgrid is not added.
You can do this diffrent ways, One possible solution:
Hello
…setGridParam({url:'myurl',datatype:'json'}).trigger(“reloadGrid”);
will help
Open Demo page.
New in version 3.5 => Tree grid real world example
Please post your question in one form only and have a little pation.
Regards
Tony
var gridWidth = parseInt($('#mailinfoGrid').getGridParam(”width”));
$('#mailinfoGrid').setGridWidth(gridWidth+0.01,true);
The grid does not change if you try to set the same width (A bug wich will be corrected soon);
Hello,
I think you should use the option reloadAfterSubmit, which do this automatically for you.
Regards
Tony
Hello,
I think you do not read carefully what Mark write.
1. You should set in grid configuration multiselect true and do not change this parameter anymore.
2. You should operate on muliboxonly parameter as of the code above.
Regards
Tony
No need to do this just call setGridWidth method with the second parameter set to true. See docs
Hello Andrew,
First of all Thank you very much for this investigation and finding bugs. Yes, we have these two bugs.
Short: they are corrected in GitHub (Note that the correction is in 3.6 branch and not in master).
It is quiete easy to work this way.
Thank you very much again.
Best Regards
Tony
Hello,
You will need to call GridUnload method before constructing the grid. Something like:
function myfunction()
{
….
jQuery.(“#list22”).GridUnload();
jQuery.(“#list22”).jqGrid({…});
jQuery(“#modal”).dialog(“open”);
}
Regards
Tony
Hello,
Maybe you need to use a setGridWidth method. Also before this you will need to determine the width of the visible columns.
You can do this using getGridParam method something like:
var model = $(“#mygrid”).getGridParam(“colModel”);
var visiblewidth = 0;
$.each(model,function(){
if (!this.hidden) visiblewidth += pareseInt(this.width);
});
Hope this help.
Regards
Tony
Hello,
Thanks. It is some thing that should be improved. I recommend you to use not height, but dataheight parameter. See available options for form Editiong in documentation
Best Regards
Tony
Hello,
Could you please post the entry jqGrid configuration and all related functions related to this?
Best Regards
Tony
Hello,
Something wrong maybe with the code.
If I open the Developer Tools in IE
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top