在 flex 4 中设置下拉列表的默认索引
我有一个下拉列表,它从 php Web 服务方法获取其数据。这个响应类似于:
数组('id'=>整数,'name'=>'lin')
当页面加载时,我想最初将选定的索引设置为“lin”。我该怎么做?
I have a drop down list that gets its data from a php web service method.This response is smthing like :
array('id'=>integer,'name'=>'lin')
When the page loads, I want to set the selected index to "lin" initially. How do I do this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需要设置下拉列表控件的 selectedIndex 属性即可。
前任。
你应该这样做。
you just need to set selectedIndex property of dropdownlist control.
ex.
you should do this.