Insert data/ in jquery multiselect (inside a modal) through ajax on success in codeigniter












0















View:- On click of this button a modal appears and simultaneously a js function 'set_sigid(id)' is invoked with id passed to add this value to one hidden input.



<button type="button" data-toggle="modal" data-target="#add_sig_member" 
title="Add Members" class="btn btn-link btn-info btn-just-icon "
rel="tooltip" data-placement="top" onclick="set_sigid('<?php echo $sigd-
>sig_id;?>')">
<i class="fa fa-plus"></i>
</button>


Corresponding js function for above button:



//setting the sig id before sending to the modal(data-toggle) 
function set_sigid(id)
{
$('#id_sig').val(id);
}


Same View:- here is the same modal where on value change of one simple dropdown a ajax call is made through js file to controller which returns the values that populate the below given multiselect dropdown (basically append in select/or if you may suggest to create a multiselect through DOM dynamically) - I tried both ways but it didn't work for me.



JS for modal:- this is the js function capturing id from change on above simple dropdown and making ajax call



//Adding list of student dynamically batch wise
$('#batch_val').on('change', function(){
//$('#batch_mem').html('');
var batch = document.getElementById("batch_val").value;
//alert(batch);
$.ajax({
// make the ajax call to our server and pass the country ID as a GET variable
url : "http://localhost/pccoespii/index.php/ricontroller/batchWiseMembers/"+ batch,
success: function(data)
{
data = JSON.parse(data);
// this is where m stuck
$('#add_batch_mem').html('<select class="form-control" name="batch_mem" multiple id="batch_mem">');

},
error: function (xhr, ajaxOptions, thrownError)
{
alert(thrownError);
console.warn(xhr.responseText);
}
});
});


Code for Controller mentioned above



//sending members batch wise
public function batchWiseMembers($batch)
{
$res=$this->ri_model->get_batch($batch);
echo json_encode($res);
}


Corresponding Model code



//get members batch wise to be added in SIG
function get_batch($batch)
{
$this->db->select('concat(firstname," ",lastname) as name,email');
$this->db->from('user');
$this->db->where('class',$batch);
$query = $this->db->get();
return $query->result();
}


Note:- It's working fine when I used simple dropdown/html select control but when I use multiselect then there comes issues. I've used other multiselect than default bootstrap multiselect but positioning of that multiselect.js file above/below jquery or bootstrap also has no effect.










share|improve this question



























    0















    View:- On click of this button a modal appears and simultaneously a js function 'set_sigid(id)' is invoked with id passed to add this value to one hidden input.



    <button type="button" data-toggle="modal" data-target="#add_sig_member" 
    title="Add Members" class="btn btn-link btn-info btn-just-icon "
    rel="tooltip" data-placement="top" onclick="set_sigid('<?php echo $sigd-
    >sig_id;?>')">
    <i class="fa fa-plus"></i>
    </button>


    Corresponding js function for above button:



    //setting the sig id before sending to the modal(data-toggle) 
    function set_sigid(id)
    {
    $('#id_sig').val(id);
    }


    Same View:- here is the same modal where on value change of one simple dropdown a ajax call is made through js file to controller which returns the values that populate the below given multiselect dropdown (basically append in select/or if you may suggest to create a multiselect through DOM dynamically) - I tried both ways but it didn't work for me.



    JS for modal:- this is the js function capturing id from change on above simple dropdown and making ajax call



    //Adding list of student dynamically batch wise
    $('#batch_val').on('change', function(){
    //$('#batch_mem').html('');
    var batch = document.getElementById("batch_val").value;
    //alert(batch);
    $.ajax({
    // make the ajax call to our server and pass the country ID as a GET variable
    url : "http://localhost/pccoespii/index.php/ricontroller/batchWiseMembers/"+ batch,
    success: function(data)
    {
    data = JSON.parse(data);
    // this is where m stuck
    $('#add_batch_mem').html('<select class="form-control" name="batch_mem" multiple id="batch_mem">');

    },
    error: function (xhr, ajaxOptions, thrownError)
    {
    alert(thrownError);
    console.warn(xhr.responseText);
    }
    });
    });


    Code for Controller mentioned above



    //sending members batch wise
    public function batchWiseMembers($batch)
    {
    $res=$this->ri_model->get_batch($batch);
    echo json_encode($res);
    }


    Corresponding Model code



    //get members batch wise to be added in SIG
    function get_batch($batch)
    {
    $this->db->select('concat(firstname," ",lastname) as name,email');
    $this->db->from('user');
    $this->db->where('class',$batch);
    $query = $this->db->get();
    return $query->result();
    }


    Note:- It's working fine when I used simple dropdown/html select control but when I use multiselect then there comes issues. I've used other multiselect than default bootstrap multiselect but positioning of that multiselect.js file above/below jquery or bootstrap also has no effect.










    share|improve this question

























      0












      0








      0








      View:- On click of this button a modal appears and simultaneously a js function 'set_sigid(id)' is invoked with id passed to add this value to one hidden input.



      <button type="button" data-toggle="modal" data-target="#add_sig_member" 
      title="Add Members" class="btn btn-link btn-info btn-just-icon "
      rel="tooltip" data-placement="top" onclick="set_sigid('<?php echo $sigd-
      >sig_id;?>')">
      <i class="fa fa-plus"></i>
      </button>


      Corresponding js function for above button:



      //setting the sig id before sending to the modal(data-toggle) 
      function set_sigid(id)
      {
      $('#id_sig').val(id);
      }


      Same View:- here is the same modal where on value change of one simple dropdown a ajax call is made through js file to controller which returns the values that populate the below given multiselect dropdown (basically append in select/or if you may suggest to create a multiselect through DOM dynamically) - I tried both ways but it didn't work for me.



      JS for modal:- this is the js function capturing id from change on above simple dropdown and making ajax call



      //Adding list of student dynamically batch wise
      $('#batch_val').on('change', function(){
      //$('#batch_mem').html('');
      var batch = document.getElementById("batch_val").value;
      //alert(batch);
      $.ajax({
      // make the ajax call to our server and pass the country ID as a GET variable
      url : "http://localhost/pccoespii/index.php/ricontroller/batchWiseMembers/"+ batch,
      success: function(data)
      {
      data = JSON.parse(data);
      // this is where m stuck
      $('#add_batch_mem').html('<select class="form-control" name="batch_mem" multiple id="batch_mem">');

      },
      error: function (xhr, ajaxOptions, thrownError)
      {
      alert(thrownError);
      console.warn(xhr.responseText);
      }
      });
      });


      Code for Controller mentioned above



      //sending members batch wise
      public function batchWiseMembers($batch)
      {
      $res=$this->ri_model->get_batch($batch);
      echo json_encode($res);
      }


      Corresponding Model code



      //get members batch wise to be added in SIG
      function get_batch($batch)
      {
      $this->db->select('concat(firstname," ",lastname) as name,email');
      $this->db->from('user');
      $this->db->where('class',$batch);
      $query = $this->db->get();
      return $query->result();
      }


      Note:- It's working fine when I used simple dropdown/html select control but when I use multiselect then there comes issues. I've used other multiselect than default bootstrap multiselect but positioning of that multiselect.js file above/below jquery or bootstrap also has no effect.










      share|improve this question














      View:- On click of this button a modal appears and simultaneously a js function 'set_sigid(id)' is invoked with id passed to add this value to one hidden input.



      <button type="button" data-toggle="modal" data-target="#add_sig_member" 
      title="Add Members" class="btn btn-link btn-info btn-just-icon "
      rel="tooltip" data-placement="top" onclick="set_sigid('<?php echo $sigd-
      >sig_id;?>')">
      <i class="fa fa-plus"></i>
      </button>


      Corresponding js function for above button:



      //setting the sig id before sending to the modal(data-toggle) 
      function set_sigid(id)
      {
      $('#id_sig').val(id);
      }


      Same View:- here is the same modal where on value change of one simple dropdown a ajax call is made through js file to controller which returns the values that populate the below given multiselect dropdown (basically append in select/or if you may suggest to create a multiselect through DOM dynamically) - I tried both ways but it didn't work for me.



      JS for modal:- this is the js function capturing id from change on above simple dropdown and making ajax call



      //Adding list of student dynamically batch wise
      $('#batch_val').on('change', function(){
      //$('#batch_mem').html('');
      var batch = document.getElementById("batch_val").value;
      //alert(batch);
      $.ajax({
      // make the ajax call to our server and pass the country ID as a GET variable
      url : "http://localhost/pccoespii/index.php/ricontroller/batchWiseMembers/"+ batch,
      success: function(data)
      {
      data = JSON.parse(data);
      // this is where m stuck
      $('#add_batch_mem').html('<select class="form-control" name="batch_mem" multiple id="batch_mem">');

      },
      error: function (xhr, ajaxOptions, thrownError)
      {
      alert(thrownError);
      console.warn(xhr.responseText);
      }
      });
      });


      Code for Controller mentioned above



      //sending members batch wise
      public function batchWiseMembers($batch)
      {
      $res=$this->ri_model->get_batch($batch);
      echo json_encode($res);
      }


      Corresponding Model code



      //get members batch wise to be added in SIG
      function get_batch($batch)
      {
      $this->db->select('concat(firstname," ",lastname) as name,email');
      $this->db->from('user');
      $this->db->where('class',$batch);
      $query = $this->db->get();
      return $query->result();
      }


      Note:- It's working fine when I used simple dropdown/html select control but when I use multiselect then there comes issues. I've used other multiselect than default bootstrap multiselect but positioning of that multiselect.js file above/below jquery or bootstrap also has no effect.







      ajax codeigniter-3 multi-select dynamically-generated






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 28 '18 at 16:40









      Avinash JadhavAvinash Jadhav

      35




      35
























          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53524210%2finsert-data-option-in-jquery-multiselect-inside-a-modal-through-ajax-on-succ%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53524210%2finsert-data-option-in-jquery-multiselect-inside-a-modal-through-ajax-on-succ%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Contact image not getting when fetch all contact list from iPhone by CNContact

          count number of partitions of a set with n elements into k subsets

          A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks