var radio1 = form.addField({ id: ‘custpage_radio’, type: serverWidget.FieldType.RADIO, label: ‘YEARLY’, source: ‘yearly’, … Continue reading Add radio button in same line and set one as default
Tag: Radio Button
How to update the values of custom radio buttons to the corresponding selection field in an online case form when a radio button is selected?
We can update the custom radio button value to corresponding the select field when we selecting the radio button by using the select field id.
How to convert case type Select tag to radio button in online case form using javascript.
We can convert ‘Case Type’ select tag to radio button in online case form by using javascript.
How to check a radio button using JavaScript
There are two ways in JavaScript to check the marked radio button or to identify which radio button is selected.. They can be checked once they are created or specified in HTML form. JavaScript offers two DOM methods for this: 1. getElementById 2. querySelector The input radio checked property is used to check whether the… Continue reading How to check a radio button using JavaScript
How can we disable the radio button using JavaScript
This is the code for Dropdown, if we use dropdown we can disable the button Let’s suppose by another eg: If there are male, female and other categories are there in gender. Then after we have to choose Language…accordingly.