如何确保 Spark 列表中始终有某些内容被选中?
我有一个基于 dataProvider 的 Spark 列表。当应用程序运行时,数据提供者中的数据可能会发生变化,并且数据提供者也可以交换为不同的数据
我需要做的是确保列表中始终选择某些内容(除非它是空的)
I have a spark list, which is based on a dataProvider. As the application runs, the data in the dataprovider can change, and also the dataProvider can be swapped for a different one
What I need to do is make sure that something is always selected in the list (unless it is empty)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需将列表实例的属性
requireSelection
设置为true
即可。在 MXML 中,它将是:
You simply have to set the property
requireSelection
of your list instance totrue
.In MXML, it would be:
设置其数据提供者后(或每当更改时),您可以执行 a:
,因此每当列表中的数据时,都会选择其第一项(可以是任何索引,只需记住它从 0 开始到长度 - 1 )。
After setting its data provider ( or whenever is changed ) you could do a:
, so whenever the is data on your list, its first item will be selected (it could be any index, just remember that it start from 0 to length - 1).