0
Participant
,
/t5/animate-discussions/radio-buttons-canvas-value-and-text-with-javascript/td-p/10960952
Mar 03, 2020
Mar 03, 2020
Copy link to clipboard
Copied
I want to set the values and text to radiobuttons components in html5 canvas per Javascript.
I don`t want to use the components panel.
Does anyone know a documentation for this components.
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 03, 2020
Mar 03, 2020
I have got it the a radio button with instance name r1 the value is:
$("#r1").val('Super');
the label is
$("#r1").next().text( "Default" );
Participant
,
LATEST
/t5/animate-discussions/radio-buttons-canvas-value-and-text-with-javascript/m-p/10961006#M201960
Mar 03, 2020
Mar 03, 2020
Copy link to clipboard
Copied
I have got it the a radio button with instance name r1 the value is:
$("#r1").val('Super');
the label is
$("#r1").next().text( "Default" );
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

