I want to freeze the bottom row of my grid. I'm thinking of writting a row attrribute for it. Something like this:
"rowattr": function (rd) {
if (rd.islocked) {
return {"frozen":"true"};
}
}
Will something like this actually work ? I looked at the example here, but it didn't work for me.
This is the first time I'm using Jqgrid, so I hva eno idea how to do this. Any help is welcomed. :)