我有一个yiiGridView问题,我不知道如何做对。
所以,我有很好的初始化CGridView,我需要$(tableId).yiiGridView.update(tableId,settings),用新数据重新加载我的数据网格。
任何人都可以(请!)发布一些示例如何实现这一目标。
如果需要,我也可以发送我的代码,所以任何能够解决这个问题的人都可以更好地看到我犯错的地方。
提前致谢(d)。
答案 0 :(得分:2)
如果您想使用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)