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.
我正在使用 Ext.Net 1.5。我正在使用 Ext:dataview。我想默认选择一个数据视图值。建议我怎么可能?
请看图片
尝试添加以下JS代码:
if ({your_dataview_id}.store.data.length > 0) { {your_dataview_id}.select(0); // Selects first element in a dataview }
当您想要选择数据视图中的第一个元素时,在客户端。只需将 {your_dataview_id} 替换为您的数据视图的 ID