如何在ajax post调用后重新加载jqgrid渲染器?

时间:2013-05-09 06:10:33

标签: javascript jqgrid

我在jqgrid中使用渲染器,它显示特定列的按钮,现在我想在用户按下按钮时将按钮更改为文本。如何使用javascript在运行时将rendere r更改为从按钮到文本的标签?

1 个答案:

答案 0 :(得分:0)

使用jquery

classname =所有按钮的公共

$(".classname").click(function(){
       $text = $(this).text();
       $(this).replaceWith($("<lable></lable>"));
});