How Can I Change Style In Jqgrid Frozen Columns
I made the grid without frozen columns of jqGrid. And I added frozen columns method in gridComplete gridComplete: function() {$(this).jqGrid('setFrozenColumns');}, After this in f
Solution 1:
I solved the problem. I configured new event and function, and move entire codes into the new function as following. Working well.
loadComplete: function() {
(A) .......... => move to (B)
}
$("#gridid").on('jqGridAfterGridComplete.setFrozenColumns', function(e) {
(B) .......... <= moved from (A)
});
Post a Comment for "How Can I Change Style In Jqgrid Frozen Columns"