yiiGridView问题

发布于 2024-11-16 21:46:27 字数 262 浏览 1 评论 0原文

你好,伙计们。

我有一个 yiiGridView 问题,我不知道如何解决。

因此,我已经很好地初始化了 CGridView,并且需要 $(tableId).yiiGridView.update(tableId, settings),以使用新数据重新加载我的数据网格。

任何人都可以(请!)发布一些如何实现此目标的示例。

如果需要,我也可以发送我的代码,这样任何能够解决此问题的人都可以更好地看到我在哪里犯了错误。

提前致谢(d)。

Hallo mench.

I have an yiiGridView issue witch I don't know how to make right.

So, I have CGridView nicely initialized and I need the $(tableId).yiiGridView.update(tableId, settings), to reload my datagrid with new data.

Can anyone (PLEASE!) post some example how to achive this.

If needed, I can send my code as well, so anyone who can resolve this issue can see in the better where I'm making mistakes.

Thanks in advance(d).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雾里花 2024-11-23 21:46:27

如果您想使用 javascript 处理程序更新网格,请使用下一个代码

jQuery.fn.yiigridview.update('yourGridId'); 

您可以在文件中找到很多信息

jquery.yiigridview.js

  /**
     * Performs an AJAX-based update of the grid view contents.
     * @param id string the ID of the grid view container
     * @param options map the AJAX request options (see jQuery.ajax API manual). By default,
     * the URL to be requested is the one that generates the current content of the grid view.
     */
    $.fn.yiiGridView.update = function(id, options)

If you want to update your grid with javascript handler use next code

jQuery.fn.yiigridview.update('yourGridId'); 

You can find a lot of information in file

jquery.yiigridview.js

  /**
     * Performs an AJAX-based update of the grid view contents.
     * @param id string the ID of the grid view container
     * @param options map the AJAX request options (see jQuery.ajax API manual). By default,
     * the URL to be requested is the one that generates the current content of the grid view.
     */
    $.fn.yiiGridView.update = function(id, options)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文