Flex TileList 起始偏移和点击处理程序
我有一些图像想在 Flex 的 TileList 中显示。我的 TileList 尺寸为 2 列 x n 行。我想要做的是将第一个项目(第 1 行、第 1 列)显示为空且不可单击,并从第 1 行、第 2 列开始显示我的项目。这可能吗?
我还想知道当我为同一个 TileList 创建单击事件时,有没有办法获取单击元素的索引?
非常感谢!
米。
I have some images I would like to display in TileList in Flex. My TileList dimensions are 2 columns by n rows. What I want to do is to display the first item (row 1, column 1) empty and not clickable, and to start displaying my items from row 1, column 2. Is that possible?
I also wonder when I create click event for the same TileList, is there a way get an index of clicked element?
Thank you very much!
m.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好问题。我确信有人会提供一个更优雅的解决方案,但一个简单的方法可能只是在位置 0 处向 dataProvider 添加 null,并让 itemRenderer 通过显示某种替代内容来处理 null,或者在全部。
要提取单击元素的索引,您可以使用 ListEvent 对象上的多个属性 - event.currentTarget.selectedIndex(或 event.currentTarget.selectedIndices,如果您使用多重选择)、event.columnIndex 和 。 rowIndex 或 event.itemRenderer,您可以将其与 TileList 的 itemRendererToIndex 属性等结合使用。
这是一个快速而肮脏的应用程序代码,演示了这两种方法:
希望它有帮助!如果您有问题,请回复。
Good question. I'm sure someone'll offer up a more elegant solution, but a simple approach might simply be to add a null to your dataProvider at position 0, and having your itemRenderer handle the null by displaying some sort of alternate content, or nothing at all.
To extract the index of the clicked element, there are several properties on the ListEvent objects you might use -- event.currentTarget.selectedIndex (or event.currentTarget.selectedIndices, if you're using multi-selection), event.columnIndex and .rowIndex, or event.itemRenderer, which you can use in combination with the TileList's itemRendererToIndex property, among others.
Here's a quick-and-dirty app code demonstrating both of these approaches:
Hope it helps! Post back with questions if you have 'em.