Flex 4 - 如何跟踪数据网格中最后选定的项目?

发布于 2024-10-31 19:51:43 字数 186 浏览 7 评论 0原文

我正在使用 Flex 4 和 AdvancedDataGrid。我需要跟踪先前选定的项目。但我想不出在哪里捕获它。在 itemClickHandler 方法中,网格的 selectedItem 值已经是当前选定的项目

。 focusIn 和 focusOut 属性适用于整个数据网格,而不仅仅是数据网格中的一行,

谢谢。 邦妮

I"m using Flex 4 and an AdvancedDataGrid. I need to keep track of the previously selected item. I can't think of where to capture this though. In an itemClickHandler method, the grid's selectedItem value is already the current selected item.

The focusIn and focusOut attributes apply to the whole datagrid, not to just one row in the datagrid.

Thank you.
Bonnie

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

∞琼窗梦回ˉ 2024-11-07 19:51:43
public function yourConstructor(){
   ChangeWatcher.watch(yourAdvancedDataGrid, "selectedItem",someHandler);
}

public var oldSelectedItem:Object;

protected function someHandler(event:PropertyChangeEvent):void{
   oldSelectedItem = event.oldValue;
}
public function yourConstructor(){
   ChangeWatcher.watch(yourAdvancedDataGrid, "selectedItem",someHandler);
}

public var oldSelectedItem:Object;

protected function someHandler(event:PropertyChangeEvent):void{
   oldSelectedItem = event.oldValue;
}
爱冒险 2024-11-07 19:51:43

在事件 itemFocusOut 上尝试一下

Try it on event itemFocusOut

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文