Problem with modal screen opening using bootstrap

Asked

Viewed 276 times

1

I’m new to web programming, and I’m having a problem opening a modal screen using bootstrap. Basically I have a grid controlled by ng_repeat in which I have buttons when clicking the edit button I want to open the modal screen contains the data relative to the line of the button, for this the call of the button was encoded in this way (passing the value Lor data-whatever*). However when running the program it passes only the value of the first data-whaterver, the other is not passed to the modal by the function (Edit-Modal).

Call button of the modal:

            <div class="modal fade" id="Editar-Modal" tabindex="-1" role="dialog" aria-labelledby="Editar-ModalLabel">
              <div class="modal-dialog" role="document">
                <div class="modal-content">
                  <div class="modal-header">
                    <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
                    <h4 class="modal-title" id="Editar-ModalLabel">Editar</h4>
                  </div>
                  <div class="modal-body">
                    <form>
                      <div class="form-group">
                        <label for="recipient-nome" class="control-label">Nome do usuário:</label>
                        <input type="text" class="form-control" id="Edtnome">
                      </div>
                      <div class="form-group">
                        <label for="recipient-empresa" class="control-label">Empresa padrão:</label>
                        <input type="text" class="form-control" id="Edtempresapad">
                      </div>
                    </form>
                  </div>
                  <div class="modal-footer">
                    <button type="button" class="btn btn-default" data-dismiss="modal">Cancelar</button>
                    <button type="button" class="btn btn-primary">Salvar</button>
                  </div>
                </div>
              </div>
            </div>
<script>

/*Função para carregar a tela ao entrar*/

angular.module("cadastros", []).controller("cadpri-user-ctrl", function($scope, $http){

  $scope.users = [];

//var app = angular.module('cadastros', ['angularUtils.directives.dirPagination']);
angular.module('cadastros', ['angularUtils.directives.dirPagination']);

var carregarUsers = function(){

        $http({
         method: 'GET',
            url: 'usuarios'
    }).then(function successCallback(response) {

        $scope.users = {
                        cd_usuario:response.data.cd_usuario,
                        id_empresa_padrao:response.data.id_empresa_padrao,
                        ds_usuario:response.data.ds_usuario,
                        nr_telefone:response.data.nr_telefone,
                        nr_ramal:response.data.nr_ramal,
                        ds_e_mail:response.data.ds_e_mail,
                        fg_adm:response.data.fg_adm,
                        dt_inclusao:response.data.dt_inclusao,
                      };

        $scope.users = response.data;
        //console.log($scope.users);
        //setTimeout( 1000);

      }, function errorCallback(response) {
        // called asynchronously if an error occurs
        // or server returns response with an error status.
      });

};

/*Função de excluir usuário*/
$scope.removeONUser = function(_user){
  $scope.users[0];
  $http({
    method:'DELETE',
    url:'userRemove',
    data:JSON.stringify({
                          ds_e_mail:_user.ds_e_mail,
                        })
    }).then(function(response){

    carregarUsers();

  }, function(){

});


//Função usando ng-submit

};

 $scope.ordenar = function(keyname){
   $scope.sortKey = keyname;
   $scope.reverse = !$scope.reverse;
 };


carregarUsers();

});

$(document).on("click", "#sendsenha", function () {
        var info = $(this).attr('ds_e_mail');
        var str = info.split('|');
        var username = str[0];
        $(".modal-body #username").val(enailexibir);
    });

/*Funções javascript*/

function checkCols ()
{
  //var linha = document.getElementById("teste");
  var colunas = linha.getElementsByTagName('ds_e_mail');

  for (i=0;i<colunas.length;i++)
  {
  alert("conteudo da coluna"+i+" ->"+colunas[i].firstChild.nodeValue);
  }
};

$('#Editar-Modal').on('show.bs.modal', function (event) {
  var button = $(event.relatedTarget) // Button that triggered the modal
  var recipient = button.data('whatever') // Extract info from data-* attributes
  var recipientnome = button.data('whateverEdtnome') 
  var recipientempresa = button.data('whateverEdtempresapad') 
  // If necessary, you could initiate an AJAX request here (and then do the updating in a callback).
  // Update the modal's content. We'll use jQuery here, but you could use a data binding library or other methods instead.
  var modal = $(this)
  modal.find('.modal-title').text('Editar o usuário ' + recipient)
  modal.find('#id').val(recipient)
  modal.find('#Edtnome').val(recipientnome)
  modal.find('#Edtempresapad').val(recipientempresa)
})

</script>`
  • Do you have more than one element with the id #Edit-Modal? When using the selector with the junk ('#'), only the first element with the id is located (because id’s must be unique). If applicable, use a class ('. edit-modal')

  • Hello lfarroco , responding to your question I have only one id #Edit-Modal, which I use in the call button of the modal passing the data-attrutes. ( <button type="button" class="btn-Warning btn-Xs" data-toggle="modal" data-target="#Edit-Modal" data-whatever="{user.ds_usuario}}" data-whateverEdtname="{user.cd_usuario}}" data-whateverEdtempresapad="will work" data-toggle="tooltip-edit" title="Edit registration!" ><i class="fa fa-Pencil-square-o"></i></button>)

  • Not seeing ng-repeat is difficult, but try to put a console.log( button) after the "var button = $(Event.relatedTarget)" snippet to see which button is being selected in the browser console. If possible, mount an https://plnkr.co/ with your problem.

  • Olá ifarroco, segue o resultado do console.log... "<button type="button" class="btn btn-Warning btn-Xs" data-toggle="modal" data-target="#Edit-Modal" data-whatever="Alberto Aquino" data-whateveredtnome="aa_alberto" data-whateveredtempresapad="vair dar dar" title="Edit out the record!" ><i class="fa fa-Pencil-square-o"></i></button>" we can verify that it brings the value in the button call.

  • <tr ng-repeat="user in users | filter:search|orderby:sortKey:Reverse" ng-controller="cadpri-user-Ctrl"><td style="display:None">{{$index}} </td> <td class="text-left"> {user.cd_usuario}}</td> <td class="text-center"> {user.id_empresa_pattern}}</td><td class="text-left"> {user.ds_usuario}}</td> <td class="text-center"> {user.nr_telefone}}</td><td class="text-center"> {user.nr_ramal}}</td><td class="text-left">{user.ds_e_mail}}</td> <td class="text-center"> {user.fg_adm}}</td> <td class="text-center" value="<?= date(’d/m/Y')? >"> {user.dt_inclusao}}</td><td class="actions" align="center">

  • Problem solved, the reason why the variable passage did not work was the declaration of variables that were capitalized and when passing to javascript the character was transformed to minuscule.

Show 1 more comment
No answers

Browser other questions tagged

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