Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个组合框并从服务器动态加载数据。我需要将组合框中的第一个值显示为选定值,并根据值数据应填充在网格上。如果有人知道,请给我一个相同的示例。
谢谢,拉维
您可以通过设置选择第一个值:selectedIndex=0或设置selectedItem属性。
selectedIndex=0
selectedItem
但是您应该确保有一个可以选择的项目。例如,这可以在 dataProvider 的设置器中完成。
确保您拥有数据的另一种方法是将 ChangeWatcher 添加到 dataProvider,以便在绑定新数据时通知您。然后您可以简单地遍历数据并选择您想要的任何一个,在您的情况下 selectedIndex=0;