我正在为 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
)
);
它工作得很好并且做了它应该做的,但是编辑和删除链接是文本的,我需要用图像替换文本,但不知道我需要在哪里/在哪里更改它。