我目前正在为jqGrid
创建动态列,我在解析字符串意外令牌e错误时仍然遇到错误。如何在创建jqGrid
动态列时添加格式化程序?这是我到目前为止所做的。
sColumnModels += ", { \"name\": \"" + Convert.ToDateTime(item).ToString("MM/dd/yyyy").Replace("/", "-").Trim() +
"\", \"width\": 100, \"align\": \"center\", \"frozen\": true, \"formatter\": \"function customFormatter(cellValue, options, rowObject) { alert(cellValue); }\" }";