gpt4 book ai didi

javascript - 更简单或更好的方法来检查 jqxgrid 是否没有要显示的数据(为空)?

转载 作者:行者123 更新时间:2023-12-03 05:38:26 25 4
gpt4 key购买 nike

我正在尝试根据我的 jqxgrid 是否有要显示的数据来启用/禁用 jqxbuttons。我能想到的检查 jqxgrid 是否为空的唯一方法是执行以下操作:

function CheckIfGridEmpty()
{
// Retrieve row data from my grid
var rows = $('#myGrid').jqxGrid('getRows');

if (rows.length > 0)
{
console.log("Grid is not empty");
}
else
{
console.log("Grid is empty");
}
}

是否有更简单或更好的方法来做到这一点?

最佳答案

如果您过滤网格,您的解决方案可能是错误的。 getrows 仅返回与过滤器匹配的行。

getrows

Gets all rows. Returns an array of all rows loaded in the Grid. If the Grid is filtered, the returned value is an array of the filtered records.

您可以使用getboundrows代替:

getboundrows

Gets all rows loaded from the data source. The method returns an Array of all rows. The Grid's sorting, filtering, grouping and paging will not affect the result of this method. It will always return the rows collection loaded from the data source.

您还可以使用$('#myGrid').jqxGrid('source').records.length。但是,我认为我们不能说这更容易。

希望这有帮助!

关于javascript - 更简单或更好的方法来检查 jqxgrid 是否没有要显示的数据(为空)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40643825/

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