数据仍在加载。完成数据绑定后,Grid会提升“绑定完成”功能。事件

时间:2016-08-12 06:03:56

标签: angularjs

我在刷新网格时遇到了angularjs中的jqx网格问题,

错误 = jqxGrid:数据仍在加载。完成数据绑定后,Grid会提升“绑定完成”功能。事件。在' bindingcomplete'中调用此功能。事件处理程序

我使用了以下代码: $ rootScope.bloginGridSettings.apply(' updatebounddata',' refresh');

在正常的JS中它工作但是在angularjs中,它不起作用..

1 个答案:

答案 0 :(得分:0)

您需要在以下事件中执行您的代码。

    $("#GRID_NAME").on("bindingcomplete", function (event) {
        //Your Code Here will run after the grid fully loads  
    });