Build your web apps using Smart UI
Smart.RadioButton - configuration and usage
Overview
Smart.RadioButton represents a radio button that offers the functionality to be checked or not(depending on wheather there's another radio button in the same group).
Getting Started with RadioButton Web Component
Smart UI for Web Components is distributed as smart-webcomponents NPM package. You can also get the full download from our website with all demos from the Download page.Setup the RadioButton
Smart UI for Web Components is distributed as smart-webcomponents NPM package
- Download and install the package.
npm install smart-webcomponents
- Once installed, import the RadioButton module in your application.
<script type="module" src="node_modules/smart-webcomponents/source/modules/smart.radiobutton.js"></script>
-
Adding CSS reference
The smart.default.css CSS file should be referenced using following code.
<link rel="stylesheet" type="text/css" href="node_modules/smart-webcomponents/source/styles/smart.default.css" />
- Add the RadioButton tag to your Web Page
<smart-radio-button id="radiobutton"></smart-radio-button>
- Create the RadioButton Component
<script type="module"> Smart('#radiobutton', class { get properties() { return { checked: true } } }); </script>
Another option is to create the RadioButton is by using the traditional Javascript way:
const radiobutton = document.createElement('smart-radio-button'); radiobutton.disabled = true; document.body.appendChild(radiobutton);
Smart framework provides a way to dynamically create a web component on demand from a DIV tag which is used as a host. The following imports the web component's module and creates it on demand, when the document is ready. The #radiobutton is the ID of a DIV tag.
import "../../source/modules/smart.radiobutton.js"; document.readyState === 'complete' ? init() : window.onload = init; function init() { const radiobutton = new Smart.RadioButton('#radiobutton', { checked: true }); }
- Open the page in your web server.
Appearance
smart-radio-button could contain a label. If the user wants to change this label, this can be accomplished by setting the innerHTML property of the element, like so:
<!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="../../source/styles/smart.default.css" type="text/css" /> <script type="text/javascript" src="../../source/smart.element.js"></script> <script type="text/javascript" src="../../source/smart.button.js"></script> <script type="text/javascript" src="../../source/smart.radiobutton.js"></script> <script> window.onload = function () { document.querySelectorAll('smart-radio-button')[0].innerHTML = 'RadioButton 1'; document.querySelectorAll('smart-radio-button')[1].innerHTML = 'RadioButton 2'; } </script> </head> <body> <smart-radio-button>Radio Button</smart-radio-button> <smart-radio-button>Radio Button</smart-radio-button> </body> </html>
smart-radio-button could be part of radio grop. This could be achieved via groupName property. If groupName property is not set, the element is grouped with the other radio buttons in the parent container.
Demo

<!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="../../source/styles/smart.default.css" type="text/css" /> <script type="text/javascript" src="../../source/smart.element.js"></script> <script type="text/javascript" src="../../source/smart.button.js"></script> <script type="text/javascript" src="../../source/smart.radiobutton.js"></script> </head> <body> <smart-radio-button group-name="radioGroup1">Radio Button 1</smart-radio-button> <smart-radio-button group-name="radioGroup1">Radio Button 2</smart-radio-button> <smart-radio-button group-name="radioGroup1">Radio Button 3</smart-radio-button> </body> </html>
Demo

Behavior
Using the checked property the user can change the check state of the element dynamically as well.
By default the checked state of the radio button is set to false. This property could be set to true or false. Checking radio button in group automatically unchecks previously checked button.
The element offers multiple click modes:
- press
- release
- pressAndRelease
clickMode is a property of the button that can be changed either from the HTML tag by setting the attribute click-mode and assigning a new value to it or by following the earlier approach and change it dynamically via javascript during the onload stage of the window object or later
Here's how to set a new clickMode on element initialiation:
<!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="../../source/styles/smart.default.css" type="text/css" /> <script type="text/javascript" src="../../source/smart.element.js"></script> <script type="text/javascript" src="../../source/smart.button.js"></script> <script type="text/javascript" src="../../source/smart.radiobutton.js"></script> </head> <body> <smart-radio-button click-mode="press">Radio Button</smart-radio-button> <smart-radio-button click-mode="press">Radio Button</smart-radio-button> </body> </html>
Demo

And here's how to change it via javascript after the element has been initialized:
<!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="../../source/styles/smart.default.css" type="text/css" /> <script type="text/javascript" src="../../source/smart.element.js"></script> <script type="text/javascript" src="../../source/smartbutton.js"></script> <script type="text/javascript" src="../../source/smartradiobutton.js"></script> <script> window.onload = function () { document.querySelectorAll('smart-radio-button')[0].clickMode = 'press'; document.querySelectorAll('smart-radio-button')[1].clickMode = 'press'; } </script> </head> <body> <smart-radio-button>Radio Button</smart-radio-button> <smart-radio-button>Radio Button</smart-radio-button> </body> </html>
Demo

Using the enableContainerClick property the user can change the behavior when different parts of the element are clicked.
By default the enableContainerClick is set to false and the element changes it's state only when is clicked directly the radio button. When this property is set to true, clicking the element's label also changes it's state.
Keyboard Support
Smart.RadioButton check state could be changed via Space. Space should change the state of the current element only to Checked. If the elements is in radio group, it's check unchecks all other radio buttons. The element is focusable and can be focused using the Tab button.
Create, Append, Remove, Get/Set Property, Invoke Method, Bind to Event
Create a new element:
const radiobutton = document.createElement('smart-radio-button');
Append it to the DOM:
document.body.appendChild(radiobutton);
Remove it from the DOM:
radiobutton.parentNode.removeChild(radiobutton);
Set a property:
radiobutton.propertyName = propertyValue;
Get a property value:
const propertyValue = radiobutton.propertyName;
Invoke a method:
radiobutton.methodName(argument1, argument2);
Add Event Listener:
const eventHandler = (event) => { // your code here. }; radiobutton.addEventListener(eventName, eventHandler);
Remove Event Listener:
radiobutton.removeEventListener(eventName, eventHandler, true);
Using with Typescript
Smart Web Components package includes TypeScript definitions which enables strongly-typed access to the Smart UI Components and their configuration.
Inside the download package, the typescript directory contains .d.ts file for each web component and a smart.elements.d.ts typescript definitions file for all web components. Copy the typescript definitions file to your project and in your TypeScript file add a reference to smart.elements.d.ts
Read more about using Smart UI with Typescript.Getting Started with Angular RadioButton Component
Setup Angular Environment
Angular provides the easiest way to set angular CLI projects using Angular CLI tool.
Install the CLI application globally to your machine.
npm install -g @angular/cli
Create a new Application
ng new smart-angular-radiobutton
Navigate to the created project folder
cd smart-angular-radiobutton
Setup the RadioButton
Smart UI for Angular is distributed as smart-webcomponents-angular NPM package
- Download and install the package.
npm install smart-webcomponents-angular
- Once installed, import the RadioButtonModule in your application root or feature module.
app.module.ts
import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { RadioButtonModule } from 'smart-webcomponents-angular/radiobutton'; import { AppComponent } from './app.component'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, RadioButtonModule ], bootstrap: [ AppComponent ] }) export class AppModule { }
- Adding CSS reference
The following CSS file is available in ../node_modules/smart-webcomponents-angular/ package folder. This can be referenced in [src/styles.css] using following code.@import 'smart-webcomponents-angular/source/styles/smart.default.css';
Another way to achieve the same is to edit the angular.json file and in the styles add the style."styles": [ "node_modules/smart-webcomponents-angular/source/styles/smart.default.css" ]
-
Example
app.component.html
<smart-radio-button #radiobutton>Radio Button 1</smart-radio-button> <smart-radio-button #radiobutton2 [checked]="true">Radio Button 2</smart-radio-button>
app.component.ts
import { Component, ViewChild, OnInit, AfterViewInit } from '@angular/core'; import { RadioButtonComponent } from 'smart-webcomponents-angular/radiobutton'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent implements AfterViewInit, OnInit { @ViewChild('radiobutton', { read: RadioButtonComponent, static: false }) radiobutton!: RadioButtonComponent; @ViewChild('radiobutton2', { read: RadioButtonComponent, static: false }) radiobutton2!: RadioButtonComponent; ngOnInit(): void { // onInit code. } ngAfterViewInit(): void { // afterViewInit code. this.init(); } init(): void { // init code. } }
app.module.ts
import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { RadioButtonModule } from 'smart-webcomponents-angular/radiobutton'; import { AppComponent } from './app.component'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, RadioButtonModule ], bootstrap: [ AppComponent ] }) export class AppModule { }
Running the Angular application
After completing the steps required to render a RadioButton, run the following command to display the output in your web browser
ng serveand open localhost:4200 in your favorite web browser.
Read more about using Smart UI for Angular: https://www.htmlelements.com/docs/angular-cli/.
Getting Started with React RadioButton Component
Setup React Environment
The easiest way to start with React is to use create-react-app. To scaffold your project structure, follow the installation instructions.
npx create-react-app my-app cd my-app npm start
Preparation
Open src/App.js andsrc/App.css
- Remove everything inside the App div tag in src/App.js:
<div className="App"> </div>
- Remove the logo.svg import
- Remove the contents of src/App.css
- Remove src/logo.svg
Setup the RadioButton
Smart UI for React is distributed as smart-webcomponents-react NPM package
- Download and install the package.
npm install smart-webcomponents-react
Once installed, import the React RadioButton Component and CSS files in your application and render it
app.js
import 'smart-webcomponents-react/source/styles/smart.default.css'; import React from "react"; import ReactDOM from 'react-dom/client'; import { RadioButton } from 'smart-webcomponents-react/radiobutton'; class App extends React.Component { componentDidMount() { } render() { return ( <div> <RadioButton>Radio Button 1</RadioButton> <RadioButton checked>Radio Button 2</RadioButton> </div> ); } } export default App;
Running the React application
Start the app withnpm startand open localhost:3000 in your favorite web browser to see the output.
Read more about using Smart UI for React: https://www.htmlelements.com/docs/react/.
Getting Started with Vue RadioButton Component
Setup Vue Environment
We will use vue-cli to get started. Let's install vue-cli
npm install -g @vue/cli
Then we can start creating our Vue.js projects with:
vue create my-project
Setup the RadioButton
Open the "my-project" folder and run:
npm install smart-webcomponents
Setup with Vue 3.x
-
Make Vue ignore custom elements defined outside of Vue (e.g., using the Web Components APIs). Otherwise, it will throw a warning about an Unknown custom element, assuming that you forgot to register a global component or misspelled a component name.
Open src/main.js in your favorite text editor and change its contents to the following:
main.js
import { createApp } from 'vue' import App from './App.vue' const app = createApp(App) app.config.isCustomElement = tag => tag.startsWith('smart-'); app.mount('#app')
-
Open src/App.vue in your favorite text editor and change its contents to the following:
App.vue
<template> <div class="vue-root"> <smart-radio-button enable-container-click>Radio Button 1</smart-radio-button> <smart-radio-button enable-container-click checked>Radio Button 2</smart-radio-button> </div> </template> <script> import { onMounted } from "vue"; import "smart-webcomponents/source/styles/smart.default.css"; import "smart-webcomponents/source/modules/smart.radiobutton.js"; export default { name: "app", setup() { onMounted(() => {}); } }; </script> <style> </style>
We can now use the smart-radio-button with Vue 3. Data binding and event handlers will just work right out of the box.
Setup with Vue 2.x
-
Make Vue ignore custom elements defined outside of Vue (e.g., using the Web Components APIs). Otherwise, it will throw a warning about an Unknown custom element, assuming that you forgot to register a global component or misspelled a component name.
Open src/main.js in your favorite text editor and change its contents to the following:
main.js
import Vue from 'vue' import App from './App.vue' Vue.config.productionTip = false Vue.config.ignoredElements = [ 'smart-radio-button' ] new Vue({ render: h => h(App), }).$mount('#app')
-
Open src/App.vue in your favorite text editor and change its contents to the following:
App.vue
<template> <div> <smart-radio-button enable-container-click>Radio Button 1</smart-radio-button> <smart-radio-button enable-container-click checked>Radio Button 2</smart-radio-button> </div> </template> <script> import "smart-webcomponents/source/smart.elements.js"; import "smart-webcomponents/source/styles/smart.default.css"; export default { name: "app" }; </script> <style> </style>
We can now use the smart-radio-button with Vue. Data binding and event handlers will just work right out of the box.
We have bound the properties of the smart-radio-button to values in our Vue component.
Running the Vue application
Start the app withnpm run serveand open localhost:8080 in your favorite web browser to see the output below:
Read more about using Smart UI for Vue: https://www.htmlelements.com/docs/vue/.