How to use refresh method in ui-grid?

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-28 22:43:46
Jose

Visit this pages:

http://ui-grid.info/docs/#/api/ui.grid.class:GridApi

After having instantiated your gridApi, you can just call:

//instantiate (not so obvious)
// whatever scope attribute your binding to gridOptions
$scope.gridOptions = {
  onRegisterApi: function(gridApi){ $scope.gridApi = gridApi;}
}
//then later
$scope.gridApi.core.refresh();

Hope that helps!

Zdzislaw Kochanski

Depending on your need you can change the following ui-grid option

enableRowHashing:false

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!