开发者

jqGrid - How to put a specify page number

开发者 https://www.devze.com 2023-02-24 21:01 出处:网络
I want to make the following : 1. I have the following formatter function: function ActionDescriptionFormatter(cellval, opts, rwdat, _act) {

I want to make the following : 1. I have the following formatter function:

    function ActionDescriptionFormatter(cellval, opts, rwdat, _act) {
        var str = "<a border='0' style='text-decoration: none;' href='/Admin/IdeaDescription?id=" + cellval + "' title='Description'><img src='/images/aico_descr.png' alt='Description' border='0' 开发者_StackOverflow中文版/></a>";
        return str;
    }

I want to add also current pagenumber to url.

  1. I want to set page of grid if It's passed via url

How to do it?

0

精彩评论

暂无评论...
验证码 换一张
取 消