在 DataGrid 中找不到 Gettinf 属性 **text** 错误
我正在为我的 DataGrid 使用自定义 itemEditor。 itemEditor 有一个简单的 TextField 作为组件。 但是当我单击单元格时,我收到错误: ReferenceError:错误#1069:在 editors.customItemEditor 上找不到属性 text,并且没有默认值。 在 mx.controls::DataGrid/itemEditorItemEditEndHandler()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\controls\DataGrid.as:4827]
请帮助我解决此问题。
我的意见是“文本”字段出现错误。但我没有访问“文本”字段或在代码中的任何地方使用它。
问候, 拉维
I am using a custom itemEditor for my DataGrid.
The itemEditor has a simple TextField as a component.
But when ever i am clicking the cell i am getting an error as :
ReferenceError: Error #1069: Property text not found on editors.customItemEditor and there is no default value.
at mx.controls::DataGrid/itemEditorItemEditEndHandler()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\controls\DataGrid.as:4827]
Plz help me to resolve this issue.
My Opinion is that the error is coming for the "text" field. But i havn't accessed "text" field or used it anywhere in my code.
Regards,
Ravi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我通过将“return data["selected"].toString()”提交到获取文本中解决了问题:
i solved the problem with commiting incluting "return data["selected"].toString()" into get text:
取自 http://livedocs.adobe.com/ flex/3/html/help.html?content=celleditor_8.html
Taken from http://livedocs.adobe.com/flex/3/html/help.html?content=celleditor_8.html
我仍然陷入这个错误,但我认为有希望摆脱它......:)
如果我们将 TextInput 作为 itemEditor,例如:
那么就没有问题,因为“文本”是在 TextInput 内部定义的。作为。
类似地,如果我复制设置文本并在自定义编辑器中获取文本,那么它工作正常..唯一的问题是
即将到来的是关于提交改变的价值观。
我正在努力,希望我能解决这个问题。
PS:我是这里的新手,所以请原谅我任何愚蠢的 RnD...:p
I am still Struck in this error but i think there is a hope of coming out of it.... :)
If we take TextInput as the itemEditor, like:
Then there was no problem as "text" is being internally defined inside TextInput.as.
On a similar note if i copy set text and get text inside our custom Editor, then its working fine.. only problem that is
coming is regarding commiting the changed values.
I am working on it, hope i'll be able to sort it out.
P.S.: I am a newbie here, so plz pardon me of any idiotic RnD... :p