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

Radio Buttons Canvas value and text with Javascript

Participant ,
Mar 03, 2020 Mar 03, 2020

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

 

Translate
Participant ,
Mar 03, 2020 Mar 03, 2020
LATEST

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

 

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