gpt4 book ai didi

php - 加载和重新加载时的 ExtJS 网格回调

转载 作者:行者123 更新时间:2023-12-04 22:26:06 25 4
gpt4 key购买 nike

我有一个 Ext Grid 并且想要获取 JSON“成功”:false/true 响应并为每种情况执行一个函数。我希望将它作为与 JSON PHP 文件的每个网格交互的回调函数。

有这方面的例子吗?

感谢您的宝贵时间。

最佳答案

您需要注册回调到 loadexception JsonStore 的事件。像这样:

 var grid = new Ext.grid.GridPanel({
store: new Ext.data.JsonStore({
[...]
listeners: {
load: this.onLoadSuccess.crateDelegate(this),
exception: this.onLoadException.createDelegate(this)
}
}),

onLoadSuccess: function () {
// success
},

onLoadException: function () {
// error
},

[...]
}

关于php - 加载和重新加载时的 ExtJS 网格回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1468779/

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