我有一个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);
答案 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:\"
}