Delete function in Angularjs

Asked

Viewed 23 times

0

I have the function of adding a theme, and it is working perfectly, however the delete function the theme is not catching.

Exclusion function:


function _inativarTema(tema) {
    daoTema.Excluir(tema).then(function (response) {
        eturnUtil.arrayRemoverItem($scope.Temas, tema);
        eturnAlertas.Criar("Tema desativado com suscesso!", '', 1);
    }).catch(function (responseErro) {
        eturnAlertas.Criar("Erro ao desativar tema!", '', 3);
    });
}

$scope.ModalExcluir = function (tema) {
    return $eturnModal.ModalSimNao({
        etTitulo: "Confirmação",
        etDescricao: "Você realmente deseja confirmar a sua ação?",
        Function: _inativarTema,
        Params: tema
    }).result.then(function (tema) {
        if (!$scope.Temas)
            $scope.Temas = [];
        $scope.Temas.split(tema);
    });
}
No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.