I am trying to create a drop dynamically when a page loads. I want to drop box to have a BB10 look to it but I can't get it to work. I am looping getting data from a web sql database and creating the drop down options. I then dump it into a div. This code works and creates a drop down but not with the BB10 theme. Any help would be greatly appreciated! Thanks!
function onGetAllCoursesSuccess(results) {
var tasksHtml = '';
var courseID = '';
var aRow = null;
I am trying to create a drop dynamically when a page loads. I want to drop box to have a BB10 look to it but I can't get it to work. I am looping getting data from a web sql database and creating the drop down options. I then dump it into a div. This code works and creates a drop down but not with the BB10 theme. Any help would be greatly appreciated! Thanks!
function onGetAllCoursesSuccess(results) { var tasksHtml = ''; var courseID = ''; var aRow = null;
tasksHtml += 'select name="select-choice-1" id="courseName"';
for (var x = 0; x < results.rows.length; x++) {
}
tasksHtml += "/select";
$("#allCoursesDiv").empty(); $("#allCoursesDiv").html(tasksHtml);