I am trying to get my nggrid working in my modal:
$scope.open = function() {
$modal.open({
templateUrl: 'myModalContent.html',
backdrop: true,
windowClass: 'modal',
controller: function($scope, $modalInstance) {
$scope.submit = function() {
$modalInstance.dismiss('cancel');
}
$scope.cancel = function() {
$modalInstance.dismiss('cancel');
};
}
});
};
But getting this error:
TypeError: Cannot set property 'gridDim' of undefined
plunkr ref: https://plnkr.co/edit/2cIJiCdRA2K3nqEW7W56?p=preview