Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试让 angularjs网格与行拖放支持一起使用。但看起来他们已经将该功能提取到一个插件中,并且根本没有更新他们的文档。这对我来说就像一个功能......我如何在我的应用程序中将这个功能包含在网格中?我已经有网格工作并包括:
var app = angular.module('webtools', ['$strap.directives', 'ngRoute', 'ngAnimate', 'ngCookies', 'ngGrid']);
在您的控制器中只需添加以下内容
var plugin = new ngSomePlugin(); $scope.gridOptions = { plugins: [plugin], };