我在用:
columns.Bound(j => j.sDate).ClientTemplate("#= kendo.format('{0:dd-MMM-yyyy}', kendo.parseDate(sDate)) #").Title("sDate");
但是geing跟随错误,
错误:0x800a139e - JavaScript 运行时错误:无效的模板。
有什么帮助吗?
我在用:
columns.Bound(j => j.sDate).ClientTemplate("#= kendo.format('{0:dd-MMM-yyyy}', kendo.parseDate(sDate)) #").Title("sDate");
但是geing跟随错误,
错误:0x800a139e - JavaScript 运行时错误:无效的模板。
有什么帮助吗?
修改了您的代码:
columns.Bound(j => j.sDate).ClientTemplate("\\#= kendo.format('{0:dd-MMM-yyyy}',
kendo.parseDate(sDate)) \\#").Title("sDate");
添加 web.config 文件。
<httpRuntime requestValidationMode="4.5" targetFramework="4.5"
encoderType="System.Web.Security.AntiXss.AntiXssEncoder, System.Web,Version=4.0.0.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />