0

我正在尝试让 angularjs网格与行拖放支持一起使用。但看起来他们已经将该功能提取到一个插件中,并且根本没有更新他们的文档。这对我来说就像一个功能......我如何在我的应用程序中将这个功能包含在网格中?我已经有网格工作并包括:

var app = angular.module('webtools', ['$strap.directives', 'ngRoute', 'ngAnimate', 'ngCookies', 'ngGrid']);
4

1 回答 1

0

在您的控制器中只需添加以下内容

var plugin = new ngSomePlugin();

$scope.gridOptions = {
    plugins: [plugin],
};
于 2013-11-12T22:16:48.883 回答