Hello,
var mycolumns = $(“#mygrid”).getGridParam(“colModel”);
var visiblecolumns=[];
$.each(mycolumns,function(i,n) {
if(!this.hidden)
{
visiblecolumns.push(this); // or what you want to be send to the server
}
})
Regards
Tony
Hello,
If you mean frozen columns – this is a planed feature.
Regards
Tony
Hello,
Try
$(“#mygrid”).editCel(iRow,iCol, false);
See docs what iCol and iRow are.
Regards
Tony
Hello,
If I understand right – you can use the available events in form editing and extend the posted data to the server.
Look here:
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:form_editing
Regards
Tony
Hello,
Just tested your code again with the data in my server and everthing work ok. Are you sure that this is the whole code?
Try to isolate the problem. All these in the last post are not needed.
Just look here and try only with jqGrid only without any othe plugin.
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:how_to_install
and here
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:first_grid
Regards
Tony
Hello,
Not sure but try to add header in your server response – the php code is this:
header(“Content-type: text/xml;charset=utf-8”);
Regards
Tony
Hello,
Use JSON parse to convert a string to object
Regards
Tony
Hello,
Paging and searching with local data, currently is not supported.
Will be available maybe in 3.7 version
Regards
Tony
Hello,
Use jquery removeClass on the grid.
Regards
Tony
Hello,
Thanks for this. I know about this and this make me not happy. It is present only at certain themes and certain conditions which I can not determine currently. As you can see with the same theme everthing is going OK.
Will try to fix this
Best Regards
Tony
Hello,
Thanks. Could yo please send a link to the problem.
Best Regards
Tony
Hello,
Thanks for this. Will see what I can do.
Best Regards
Tony
Hello,
Fixed in GitHub. Moreover I added anothe usefull feature – the method now can return the sum or count or average of the row. See description in GitHub.
Thanks
Best Regards
Tony
Hello,
Maybe this will help. Read to the end of document
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:how_to_install
Hello,
Use multiselect with setSelection method
Regards
Tony
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top