How to update web page "Modal" without giving refresh (F5) after accessing last information?

0

This is my code for the Modal

$scope.salvarObservacao = function (data) {
    if(data.dsObservacaoEvento === undefined | data.dsObservacaoEvento === '' ) {
        alert('Campo obrigatório.');
        return false;
    }

    EventoService.salvarObservacao($rootScope.idEvento,data).then(function(dados){
        toaster.pop('success','Participantes','Dado salvo com sucesso.');

        // toaster.pop ({
        //     type: 'success',
        //     title: 'Participantes',
        //     body: 'Dado salvo com sucesso.',
        //     onHideCallback: function () { 
        //         $modalStack.dismissAll();
        //     }
        // });
    }).catch(function(err){
        //...
    });

    setTimeout($modalStack.dismissAll(),3000);
};

}],
templateUrl: 'modal/incluir-observacao.html'
}

});
    
asked by anonymous 15.02.2017 / 16:11

0 answers