Creating a dynamic dropdown list from local storage database table









up vote
0
down vote

favorite












I have some data on an sqlite table named tblactivity, and i want to have a drop down menu/list for this data. I have tried the following implementations, but nothing seems to work.



//Implementation A



 window.onload = function() 
db.transaction(function(tx)
Squery = 'SELECT * FROM tblactivity';
tx.executeSql(Squery,
null,
function(tx, results)

//var select = document.getElementById('activity');
var len = results.rows.length;
for(var i=0; i<len; i++)
row = results.rows.item(i);
var ID = row['activityID'];
var Name = row['ActivityName'];
/*var opt = document.createElement('option');
opt.value = ID;
opt.innerHTML = Name;
select.appendChild(opt);*/
//Create the new dropdown menu
var whereToPut = document.getElementById('activity');
var newDropdown = document.createElement('select');
newDropdown.setAttribute('id',"newDropdownMenu");
whereToPut.appendChild(newDropdown);

//Add an option called "Apple"
var optionApple=document.createElement("option");
optionApple.text=Name;
newDropdown.add(optionApple,newDropdown.options[null]);

);
);
;


//Implementation B



 $(document).ready(function() 
function getActivity()
tx.executeSql('SELECT * FROM tblactivity');
function queryActivityb(tx, results)
var len = results.rows.length;
for (var i = 0; i < len; i++)
var select = document.getElementById('activity');
row = results.rows.item(i);
var ID = row['activityID'];
var Name = row['ActivityName'];
var opt = document.createElement('option');
opt.value = ID;
opt.innerHTML = Name;
select.appendChild(opt);
;


);


//Implementation C



 window.onload = function() 
function getActivity(tx)
var select = document.getElementById('activity');
for (var i = 0; i <= 10; i++)
var opt = document.createElement('option');
opt.value = i;
opt.innerHTML = i;
select.appendChild(opt);





//Implementation D



 function getActivity(){
function getActivity(tx)
tx.executeSql('SELECT * FROM tblactivity', , queryActivity, errorHandler);
function queryActivity(tx, results)
var len = results.rows.length;
for (var i = 0; i < len; i++)
var select = document.getElementById('activity');
select ='<option value="' + results.rows.item(i).activityID +'">'+ results.rows.item(i).ActivityName +'</Option>';
//alert("activity");





The HTML page as follows



 <label for="activity"><b>Activity Name: <span style="color:#F00; font-size:10px;">*</span></b></label>
<select name="activity" id="activity" required>
<option value="">--Select--</option>

</select>


Another problem is what event to use to call any of the above implementations in the select i.e onload, onclick etc










share|improve this question

























    up vote
    0
    down vote

    favorite












    I have some data on an sqlite table named tblactivity, and i want to have a drop down menu/list for this data. I have tried the following implementations, but nothing seems to work.



    //Implementation A



     window.onload = function() 
    db.transaction(function(tx)
    Squery = 'SELECT * FROM tblactivity';
    tx.executeSql(Squery,
    null,
    function(tx, results)

    //var select = document.getElementById('activity');
    var len = results.rows.length;
    for(var i=0; i<len; i++)
    row = results.rows.item(i);
    var ID = row['activityID'];
    var Name = row['ActivityName'];
    /*var opt = document.createElement('option');
    opt.value = ID;
    opt.innerHTML = Name;
    select.appendChild(opt);*/
    //Create the new dropdown menu
    var whereToPut = document.getElementById('activity');
    var newDropdown = document.createElement('select');
    newDropdown.setAttribute('id',"newDropdownMenu");
    whereToPut.appendChild(newDropdown);

    //Add an option called "Apple"
    var optionApple=document.createElement("option");
    optionApple.text=Name;
    newDropdown.add(optionApple,newDropdown.options[null]);

    );
    );
    ;


    //Implementation B



     $(document).ready(function() 
    function getActivity()
    tx.executeSql('SELECT * FROM tblactivity');
    function queryActivityb(tx, results)
    var len = results.rows.length;
    for (var i = 0; i < len; i++)
    var select = document.getElementById('activity');
    row = results.rows.item(i);
    var ID = row['activityID'];
    var Name = row['ActivityName'];
    var opt = document.createElement('option');
    opt.value = ID;
    opt.innerHTML = Name;
    select.appendChild(opt);
    ;


    );


    //Implementation C



     window.onload = function() 
    function getActivity(tx)
    var select = document.getElementById('activity');
    for (var i = 0; i <= 10; i++)
    var opt = document.createElement('option');
    opt.value = i;
    opt.innerHTML = i;
    select.appendChild(opt);





    //Implementation D



     function getActivity(){
    function getActivity(tx)
    tx.executeSql('SELECT * FROM tblactivity', , queryActivity, errorHandler);
    function queryActivity(tx, results)
    var len = results.rows.length;
    for (var i = 0; i < len; i++)
    var select = document.getElementById('activity');
    select ='<option value="' + results.rows.item(i).activityID +'">'+ results.rows.item(i).ActivityName +'</Option>';
    //alert("activity");





    The HTML page as follows



     <label for="activity"><b>Activity Name: <span style="color:#F00; font-size:10px;">*</span></b></label>
    <select name="activity" id="activity" required>
    <option value="">--Select--</option>

    </select>


    Another problem is what event to use to call any of the above implementations in the select i.e onload, onclick etc










    share|improve this question























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I have some data on an sqlite table named tblactivity, and i want to have a drop down menu/list for this data. I have tried the following implementations, but nothing seems to work.



      //Implementation A



       window.onload = function() 
      db.transaction(function(tx)
      Squery = 'SELECT * FROM tblactivity';
      tx.executeSql(Squery,
      null,
      function(tx, results)

      //var select = document.getElementById('activity');
      var len = results.rows.length;
      for(var i=0; i<len; i++)
      row = results.rows.item(i);
      var ID = row['activityID'];
      var Name = row['ActivityName'];
      /*var opt = document.createElement('option');
      opt.value = ID;
      opt.innerHTML = Name;
      select.appendChild(opt);*/
      //Create the new dropdown menu
      var whereToPut = document.getElementById('activity');
      var newDropdown = document.createElement('select');
      newDropdown.setAttribute('id',"newDropdownMenu");
      whereToPut.appendChild(newDropdown);

      //Add an option called "Apple"
      var optionApple=document.createElement("option");
      optionApple.text=Name;
      newDropdown.add(optionApple,newDropdown.options[null]);

      );
      );
      ;


      //Implementation B



       $(document).ready(function() 
      function getActivity()
      tx.executeSql('SELECT * FROM tblactivity');
      function queryActivityb(tx, results)
      var len = results.rows.length;
      for (var i = 0; i < len; i++)
      var select = document.getElementById('activity');
      row = results.rows.item(i);
      var ID = row['activityID'];
      var Name = row['ActivityName'];
      var opt = document.createElement('option');
      opt.value = ID;
      opt.innerHTML = Name;
      select.appendChild(opt);
      ;


      );


      //Implementation C



       window.onload = function() 
      function getActivity(tx)
      var select = document.getElementById('activity');
      for (var i = 0; i <= 10; i++)
      var opt = document.createElement('option');
      opt.value = i;
      opt.innerHTML = i;
      select.appendChild(opt);





      //Implementation D



       function getActivity(){
      function getActivity(tx)
      tx.executeSql('SELECT * FROM tblactivity', , queryActivity, errorHandler);
      function queryActivity(tx, results)
      var len = results.rows.length;
      for (var i = 0; i < len; i++)
      var select = document.getElementById('activity');
      select ='<option value="' + results.rows.item(i).activityID +'">'+ results.rows.item(i).ActivityName +'</Option>';
      //alert("activity");





      The HTML page as follows



       <label for="activity"><b>Activity Name: <span style="color:#F00; font-size:10px;">*</span></b></label>
      <select name="activity" id="activity" required>
      <option value="">--Select--</option>

      </select>


      Another problem is what event to use to call any of the above implementations in the select i.e onload, onclick etc










      share|improve this question













      I have some data on an sqlite table named tblactivity, and i want to have a drop down menu/list for this data. I have tried the following implementations, but nothing seems to work.



      //Implementation A



       window.onload = function() 
      db.transaction(function(tx)
      Squery = 'SELECT * FROM tblactivity';
      tx.executeSql(Squery,
      null,
      function(tx, results)

      //var select = document.getElementById('activity');
      var len = results.rows.length;
      for(var i=0; i<len; i++)
      row = results.rows.item(i);
      var ID = row['activityID'];
      var Name = row['ActivityName'];
      /*var opt = document.createElement('option');
      opt.value = ID;
      opt.innerHTML = Name;
      select.appendChild(opt);*/
      //Create the new dropdown menu
      var whereToPut = document.getElementById('activity');
      var newDropdown = document.createElement('select');
      newDropdown.setAttribute('id',"newDropdownMenu");
      whereToPut.appendChild(newDropdown);

      //Add an option called "Apple"
      var optionApple=document.createElement("option");
      optionApple.text=Name;
      newDropdown.add(optionApple,newDropdown.options[null]);

      );
      );
      ;


      //Implementation B



       $(document).ready(function() 
      function getActivity()
      tx.executeSql('SELECT * FROM tblactivity');
      function queryActivityb(tx, results)
      var len = results.rows.length;
      for (var i = 0; i < len; i++)
      var select = document.getElementById('activity');
      row = results.rows.item(i);
      var ID = row['activityID'];
      var Name = row['ActivityName'];
      var opt = document.createElement('option');
      opt.value = ID;
      opt.innerHTML = Name;
      select.appendChild(opt);
      ;


      );


      //Implementation C



       window.onload = function() 
      function getActivity(tx)
      var select = document.getElementById('activity');
      for (var i = 0; i <= 10; i++)
      var opt = document.createElement('option');
      opt.value = i;
      opt.innerHTML = i;
      select.appendChild(opt);





      //Implementation D



       function getActivity(){
      function getActivity(tx)
      tx.executeSql('SELECT * FROM tblactivity', , queryActivity, errorHandler);
      function queryActivity(tx, results)
      var len = results.rows.length;
      for (var i = 0; i < len; i++)
      var select = document.getElementById('activity');
      select ='<option value="' + results.rows.item(i).activityID +'">'+ results.rows.item(i).ActivityName +'</Option>';
      //alert("activity");





      The HTML page as follows



       <label for="activity"><b>Activity Name: <span style="color:#F00; font-size:10px;">*</span></b></label>
      <select name="activity" id="activity" required>
      <option value="">--Select--</option>

      </select>


      Another problem is what event to use to call any of the above implementations in the select i.e onload, onclick etc







      javascript html cordova drop-down-menu






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 10 at 10:46









      emmal mbwe

      62




      62



























          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',
          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%2f53238163%2fcreating-a-dynamic-dropdown-list-from-local-storage-database-table%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          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.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • 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%2f53238163%2fcreating-a-dynamic-dropdown-list-from-local-storage-database-table%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

          How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

          Syphilis

          Darth Vader #20