0
Participant
,
/t5/animate-discussions/canvas-combobox-component-how-to-set-values-with-javascript/td-p/10957389
Mar 02, 2020
Mar 02, 2020
Copy link to clipboard
Copied
I want to set the values for a HTML5/Canvas Component Combobox with Javascript. I know how to set the values with the component window, but I need a programatic solution.
TOPICS
Code
,
How to
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 Correct answer
Participant
,
Mar 02, 2020
Mar 02, 2020
I have got a solution to append a value and text.
$('#combo1').
append($("<option/>").
attr("value",'No 1').
text('Jimi Hendrix'));
This page helped me
https://techbrij.com/jquery-operations-on-dropdownlist-combobox
Even if I want to set new Values und delete the former values I can use this script:
var str = "<option value='0'>Hund</option><option value='1'>Katze</option>";
$('#combo1').html(str);
Participant
,
LATEST
/t5/animate-discussions/canvas-combobox-component-how-to-set-values-with-javascript/m-p/10957434#M201890
Mar 02, 2020
Mar 02, 2020
Copy link to clipboard
Copied
I have got a solution to append a value and text.
$('#combo1').
append($("<option/>").
attr("value",'No 1').
text('Jimi Hendrix'));
This page helped me
https://techbrij.com/jquery-operations-on-dropdownlist-combobox
Even if I want to set new Values und delete the former values I can use this script:
var str = "<option value='0'>Hund</option><option value='1'>Katze</option>";
$('#combo1').html(str);
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

