I have to use dirPaginate for pagination purpose in my angular js app. But the problem is that I already have one custom directive (name is pndaKafka) for some other purpose. If I use dirPaginate directive then that custom directive stop reflecting in my app.
Below is the code:
Hi,
I have to use dirPaginate for pagination purpose in my angular js app. But the problem is that I already have one custom directive (name is pndaKafka) for some other purpose. If I use dirPaginate directive then that custom directive stop reflecting in my app. Below is the code:
angular.module('appComponents',[]); angular.module('appComponents',['angularUtils.directives.dirPagination']); angular.module('appComponents').directive('pndaKafka', ['$filter', '$window', 'HelpService', 'ConfigService', function($filter, $window, HelpService, ConfigService) {
// // }]);