根据 Flex 中对象的值更改组合框选择
如何根据数据网格对象的选择更改组合框选择中选择的项目?
how do i change the item selected in a combobox selection based on a selection of a datagrid object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将组合框的 selectedItem 属性绑定到 dataGrid 即可:
Just bind the selectedItem property of the combobox to the dataGrid:
使用数据网格上的 itemClick 事件来更改组合框的选择。
您可以在这里找到类似的答案数据网格中的Itemclick事件
use the itemClick event on the datagrid to change the selection of the combo box.
You can find similar answer here Itemclick event in datagrid