Flex 4 - 将文本字段的值推入填充数据网格的数组中
这可能吗?我希望能够在单击按钮时将文本字段的值推入数组,然后让该数组填充数据网格。我对 Flex 有点陌生,想知道是否有人可以为我指明方向或向我展示如何做到这一点。
Is this possible? I would like to be able to push a text field's value into an array on a button click, then have that array populate a data grid. I'm kind of new to flex and was wondering if someone could point me in a direction or show me how to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是很有可能的。创建一个数组并将其指定为 DataGrid 的 dataProvider(确保您的数组被声明为可绑定)。然后,每当用户单击按钮时,将文本字段的值附加到数组中。只要可绑定数组发生更改,DataGrid 就会自动更新。希望有帮助。
Yes, this is very possible. Create an array and assign it as the dataProvider for your DataGrid (Make sure your array is declared to as Bindable). Then append the value of the text field to your array whenever the user clicks the button. The DataGrid should update automatically whenever your bindable array changes. Hope that helps.