0

我正在为 PHP 使用 JQGrid。

在此处查看主页

我已将编辑和删除添加到这样的列中:

$g->set_actions(array(  
    "add"=>false, // allow/disallow add
    "edit"=>true, // allow/disallow edit
    "delete"=>true, // allow/disallow delete
    "rowactions"=>true, // show/hide row wise edit/del/save option
    "autofilter" => true, // show/hide autofilter for search
) 
);

它工作得很好并且做了它应该做的,但是编辑和删除链接是文本的,我需要用图像替换文本,但不知道我需要在哪里/在哪里更改它。

4

1 回答 1

1

You will need to define your own formatter for the cells. See this example.

This page demonstrates using a predefined formatter, which would be another option, depending on your needs.

于 2012-08-08T18:06:31.537 回答