Hello McCulloch,
jqGrid have a nice posibility to define some properties as functions. For example the sorttype property of the colModel can be also defined as function with the prototype sorttype: function(cellValue, rowObject) {/* return some value which will be used in compare operations */}. I hope that the implementation of sorttype
This forum is only for the free open source vesrion of jqGrid. You should post in the forum.
Regards
Oleg
Hello Boris,
it would be much better if you will post the information based on uncompressed code of jqGrid, for example, from the jquery.jqGrid.src.js
You can use $(“#gridid”).trigger(“reloadGrid”) to reload the grid contain (here the gridid is the id of the
You are right Tony,
one can not use the line
ts.p.colModel.name = $.jgrid.jqID(ts.p.colModel.name);
Probably one should only replace ts.p.colModel.name to $.jgrid.jqID(ts.p.colModel.name)
Hello Tony,
we forget about the feature request. Do you plan to implement this suggestion or any its modification in the next release of jqGrid?
Best regards
Oleg
I mean of course $(“#list”) instead of $(“list”), where “list” is the id of the table element of jqGrid.
Hello,
I find your question interesting. Some versions ago it was introduced the serializeGridData
Hi Tony,
I found out that the last version of code at the end of showHideCol
The file js/grid.jqueryui.js is not the same as jquery-ui.js
Nobody can help you
In the next vesrion of JavaScript (ECMAScript 4) it will be allowed to use commas like this “},]” (see “Trailing commas” of this overview), but it is the error in the curent version of JavaScript (ECMA-262).
I recommend you to use http://www.jslint.com/
The pager elements of jqGrid will be created at the grid initialization. So if you not need the pager buttons you should
use$("#pager_center").hide();
to hide all information about the pager or
$(".ui-pg-button","#pager_center").hide();
if you don't want to show only the first, previous, next and last pager buttons. In the code above I supposed that the id of the pager is id=”pager”.
Best regards
Oleg
You wrote that you have read about the importance of the CSS and JavaScripts to make columnChooser
You are absolutely correct, but it is not a bug.
In the current implementation of the custom formatter the format of rowObject depend on the situation. At the initial grid loading the type of the rowObject is the same as you have in the JSON input. If you use datatype:'xml' the rowObject
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top