I got this code
$uibModal.open({
templateurl:'',
controller:'',
backdrop:'',
size:''
resolve: ''
Can someone explain me its usage and what are its parameters usage?
$uibModal
is a service to create modal windows. It has an open
method, that will return a modal instance.
var modalInstance = $uibModal.open({
templateUrl: 'view/sample.html',
controller: 'testController',// a controller for modal instance
controllerUrl: 'controller/test-controller', // can specify controller url path
controllerAs: 'ctrl', // controller as syntax
windowClass: 'clsPopup', // can specify the CSS class
keyboard: false, // ESC key close enable/disable
resolve: {
actualData: function () {
return self.sampleData;
}
} // data passed to the controller
}).result.then(function (data) {
//do logic
}, function () {
// action on popup dismissal.
});
It is a service for opening modals in AngularJs. It is a part of "UI Bootstrap - AngularJS directives specific to Bootstrap" project.
Documentation is here:
Project details is here:
Happy reading :).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With