Hello
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:methods
Read carfully the description for getRowData. There is a text bolded with red color
Regards
Tony
Hello,
If you know the id of the row you can:
$(“#rowid”,”#mygrid”).css({….put here the desired background })
Regards
Tony
Hello,
This is discused many times. The problem is that the modal have absolute position.
To solve this problem just set in the editGridRow the following option
recreateForm : true
This will recreate the form every time you click edit or add and place it at upper left corner of the grid.
Another solutuion is not to use jqModal – i.e set it to false
Regards
Tony
Hello Alex,
The formatter can be extended very easy only once – something like this:
$.extend($.fn.fmatter,{rate: function(celvalue, options) {
// do the format and return the value
}
});
and then in your colmode just type formatter:'rate'
Regards
Tony
Hello,
Thank you for this post.
I want to discuss this with othere users using jqGrid. So if someone have a recommendation it will be good to hear them.
Thanks
Tony
P.S. Some other id polutions should be corrected in the grid, but I will do the corrections easy and carfully.
Hello,
I sugest you to use FireFox and do
loadError : function(xhr,st,err) {
console.log(xhr);
console.log(st);
console.log(err);
}
In order to see what you have from server
Regards
Tony
Hello,
For what I understand you can:
beforeSelectRow: function(rowid, e)
{
myfunction();
}
Outside the grid
function myfunction ()
{
// do something
}
And then you can call it where you want
Tony
Hello,
Which version do you use?
Regards
Tony
Hello,
I think you will need to read this
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:how_to_install
carfully. Please do not mix 3.4 with 3.5 installation
Regards
Tony
Hello,
What I do in my apps is quite easy, but requiere to use in the readers – repeatitems:false.
In this case you can define the second password in colModel and show or hide it depending on the conditions.
Regards
Tony
Hello,
If I understand right maybe you will need to pass parameters to the page where the grid is or use cockies for this purpose, then in gridComplete event you can check if this parameter is present and do setSelection with the rowid.
Regards
Tony
Hello,
Look at available options in the grid. There is such one which disables the paging elements.
Regards
Tony
Hello,
Yes, next week I will publish the beta and hope that after maximum two weeks we will have 3.6
Regards
Tony
Hello
Look here
http://www.trirand.com/jqgridw…..rm_editing
This parameter set the height of the scrolling content. When set this parameter with value (pixels) and leave height to auto you will allways have the buttons visible.
Regards
Tony
Hello,
Check the forum for this. In the next releases I will prepare such method.
Regards
Tony
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top