Flex Air 数据网格逐个单元设置焦点
我有一个带有自定义 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您为要编辑的那些列设置 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