Jquery:将一个String附加到gridview中的文本框中

时间:2013-05-09 07:00:09

标签: jquery jqgrid append datagridviewtextboxcell

我有一个text text列的gridview列。

<sjg:gridColumn id="vName" name="variableName" index="variableName" title="Variable_Name" sortable="true" editable="true" edittype="text"/>

我想在动态文本框内容中附加一个字符串“C:\”。我该怎么做? 我尝试使用此脚本,但它不工作

var myString="C:\";
$('#vName').append(myString); 

1 个答案:

答案 0 :(得分:0)

您只需设置自定义格式功能:

在列的colModel中

   ....
   formatter: CustomFormatFunction, unformat: CustomUnFormatFunction},
   ....

自定义格式函数:

function CustomFormatFunction(cellval, opts, rowObject, action) {
   return "c:\" + cellval;
}

function CustomUnFormatFunction(cellval, opts, rowObject, action) {
   return cellval; //or manipulate the string to remove the "c:\"
}