How to Use Datalist in Sketchup & HTML
-
Hello Everyone,
I am using a web dialog box in Sketchup and in Sketchup web dialog box I am Trying to set the datalist for textfield to show the matching values of the type value but Its not working in Sketchup. While the same code is working with Browser. I don't if its not support in sketchup or something else.
If anyone have some idea regarding to this please help me.Here some code sample:
In HTML:
<input type="text" name="ProjectNumber" list="project" />
<datalist id="project"></datalist>In JavaScript:
var options = '';
for(var i = 0; i < proj_no.length; i++)
options += '<option value="'+proj_no[i]+'" />';document.getElementById('proj').innerHTML = options;
Advertisement