1

将以下记录字段添加到 GridPanel 存储会使站点
Uncaught SyntaxError: Unexpected identifier向 Chrome 控制台抛出 JavaScript 错误

<ext:RecordField Name="listname" AllowBlank="false" DefaultValue="Listname" />
<ext:RecordField Name="recipients" AllowBlank="false" DefaultValue="Listmembers" />
<ext:RecordField Name="usage" AllowBlank="true" />
<ext:RecordField Name="responsible" AllowBlank="false" DefaultValue="please add Responsible Person(s)/ Group(s)" />

Firebug 控制台给出以下错误:

SyntaxError: missing } after property list
[Break On This Error]     
...,name:"responsible",defaultValue:please add Responsible Person(s)/ Group(s)}]}),...
---------------------------------------------|
admin.aspx (line 16, col 60)

看起来默认值没有正确引用为字符串,我该如何解决这个问题?

4

1 回答 1

1

似乎记录字段的默认值通常应该是一个 javascript 变量。
双引号可以defaultValue="'foo bar'"解决问题

于 2013-02-06T10:41:17.650 回答