Skip to main content
Inspiring
March 2, 2020
Answered

Canvas Combobox Component how to set Values with Javascript

  • March 2, 2020
  • 1 reply
  • 577 views

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.

 

This topic has been closed for replies.
Correct answer pastorpixel

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);

 

1 reply

pastorpixelAuthorCorrect answer
Inspiring
March 2, 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);