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

Radio Buttons Canvas value and text with Javascript

Participant ,
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

Views

266

Translate

Translate

Report

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

 

Votes

Translate

Translate
Participant ,
Mar 03, 2020 Mar 03, 2020

Copy link to clipboard

Copied

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

 

Votes

Translate

Translate

Report

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