JQGrid for PHP用图标替换链接文本

时间:2012-08-01 09:14:22

标签: php jquery jqgrid jqgrid-php

我正在使用JQGrid for PHP。

请参阅首页here

我已将“编辑”和“删除”添加到如下列:

$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
) 
);

它运作良好并且做了它应该做的但是编辑和删除链接在文本中我需要用图像替换文本但不知道我需要改变它的内容/位置。

1 个答案:

答案 0 :(得分:1)

您需要为单元格定义自己的格式化程序。见this example.

This page演示了如何使用预定义的格式化程序,这将是另一种选择,具体取决于您的需求。