returning uibmodal result to parent controller

13,368

Inside result.then of modalInstance object you can get value returned while closing modalInstance

modalInstance.result.then(function(submitVar) {
    console.log("sumbited value inside parent controller", submitVar);
})
Share:
13,368

Related videos on Youtube

TobyStack
Author by

TobyStack

Taking Maths & Computing at University and slowly struggling by learning stuff.

Updated on June 04, 2022

Comments

  • TobyStack
    TobyStack almost 2 years

    so here is my modal JS:

    function modalInstance() {
            var ctrlr = function($scope,$uibModalInstance,inName) {
                var init = function() {
                    $scope.modalTmpStep = {
                        pos: 0,
                        body: ''
                    };
                    $scope.cancelStep = cancelStep;
                    $scope.submitStep = saveStep;
                };
    
                function cancelStep() {
                    console.log('closing');
                    $uibModalInstance.dismiss('dismissed');
                }
                function saveStep() {
                    var submitVar = JSON.stringify($scope.modalTmpStep)
                    console.log('submitting')
                    $uibModalInstance.close(submitVar);
                }
    
                init()
            };
    
            var modalInstance = $uibModal.open({
                animation: true,
                templateUrl: 'main/add/stepModal/addModal.html',
                controller: ctrlr,
                size: 'lg',
                backdrop: 'static'
            });
    
            modalInstance.result.then(function() {
                console.log();
            })
    
        }

    The end goal of this piece of code is to print the object "submitVar" somewhere on the parent page, the object could be a string or a JSON. All the variables in questions are being chaned using ng-model in the HTML. I don't know how to pass this value back to the parent controller and need some help.

    Currently the line console.log('submitting') runs, but i don't know where the submitVar result is placed. I'm planning to use this as as an editing window, so an object is passed in, then edited and passed back, changing the current value.

    I'm using: https://angular-ui.github.io/bootstrap/ as a reference and cant find any other documentation on this.