gpt4 book ai didi

javascript - Ext JS 5 - 检查 gridview 是否为空?

转载 作者:行者123 更新时间:2023-11-28 19:16:14 25 4
gpt4 key购买 nike

我想检查我的 GridView 是否为空?这是我到目前为止得到的:

var mygrid = Ext.ComponentQuery.query('mygridID')[0];
//Now i need to check the grid if they have values or not. If it is empty, i want to return a string that says "". Help?

最佳答案

您必须获取与 GridView 连接的商店中的记录数:

if (!mygrid.getStore().getCount()) {
return 'empty';
}

关于javascript - Ext JS 5 - 检查 gridview 是否为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29757498/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com