Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Canvas Combobox Component how to set Values with Javascript

Participant ,
Mar 02, 2020 Mar 02, 2020

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
536
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

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

 

Translate
Participant ,
Mar 02, 2020 Mar 02, 2020
LATEST

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

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines