Flex Air 数据网格逐个单元设置焦点

发布于 2024-07-16 22:24:02 字数 438 浏览 5 评论 0原文

我有一个带有自定义 itemRenderer 的数据网格。 现在我需要将焦点设置为网格单元格。 为此我用谷歌搜索了& 有一种方法,即

var findrowindex:int = 0;

//nextButton Click Handler
var focusedCell: Object = new Object();
focusedCell. columnIndex = 3;
focusedCell. rowIndex = findrowindex;
dg.editedItemPosition = focusedCell; 
dg.validateNow( );
findrowindex++;

使用这个我能够在一个单元格中获得焦点,但焦点不会从一个单元格移动到另一个单元格。 请建议我哪里出错了,或者建议我任何实现这一目标的方法。

谢谢。

I have a datagrid with custom itemRenderer. Now I need to setfocus int the grid cell by cell. For that I Googled & got a way i.e

var findrowindex:int = 0;

//nextButton Click Handler
var focusedCell: Object = new Object();
focusedCell. columnIndex = 3;
focusedCell. rowIndex = findrowindex;
dg.editedItemPosition = focusedCell; 
dg.validateNow( );
findrowindex++;

Using this I am able to get focus in a cell but the focus is not moving from one cell to another.
Pls suggest me where I am going wrong or suggest me any ther way to achieve this.

Thanks.

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

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

发布评论

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

评论(1

狼亦尘 2024-07-23 22:24:02

如果您为要编辑的那些列设置 editable=true 。 您可以通过 Tab 键移动焦点。 使用 itemEditor 而不是 itemRenderer。 如果您希望在对焦和对焦时具有相同的外观和感觉。 使用 itemRenderer 和 itemEditor 的组合
问候,
阿里武

if you set editable=true for those columns where you want to edit. you can move the focus by tab key. use itemEditor instead of itemRenderer. if you want the same look and feel while focus is in and focus is out. use combination of itemRenderer and itemEditor
Regards,
Arivu

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