Skip to main content Skip to complementary content

Radio button property definition

Information noteSTABLE.

This API is reliable and breaking changes are unlikely.

Fields

The radio button definition property template can be used to add a custom property of radio button type. When defining a radio button property, the following fields can be used:

type

This field is mandatory and should always be "string" for a radio button property type definition.

Information noteThe radio button effect is achieved by defining the component field to "radiobuttons", see below.

component

Used for defining how the property is visualized in the property panel. Used to override the default component that comes with the type setting.

This field is mandatory for a radio button property and should always be "radiobuttons".

label

Used for defining the label that is displayed in the property panel.

ref

Name or ID used to reference a property.

defaultValue

Used for defining the default value of your custom property.

options

Array of options. Can be value, label and function.

Example:

options: [{
	value: "v",
	label: "Vertical"
}, {
	value: "h",
	label: "Horizontal"
}],

Examples

Fetching options from an external resource

Information noteThis example is using jQuery. Make sure to have jQuery included as a require-dependency.
return {
	type: "items",
	component: "accordion",
	items: {
		settings: {
			uses: "settings",
			items: {
				MyDropdownProp: {
					type: "string",
					component: "dropdown",
					label: "Data source",
					ref: "myproperties.datasource",
					options: function() {
						return $.get("datasource.php").then(function(items){
							return items.map(function(item){
								return {
									value:item.toLowerCase(),
									label:item
								};
							});
						});
					}
Information noteOptions will be fetched every time a property is changed. It is up to the developer to cache the result from the web service if you want to avoid repeating reloads.

Defining custom radio buttons

Defining a custom property of radio button type can look like below.

Example: Add custom radio button property to Appearance accordion

Information noteCustomization of properties always start with items:.
	return {
		type: "items",
		component: "accordion",
		items: {
			settings: {
				uses: "settings",
				items: {
				MyRadiobuttongroupProp: {
						type: "string",
						component: "radiobuttons",
						label: "Orientation radio-buttons",
						ref: "myproperties.orientation",
						options: [{
							value: "v",
							label: "Vertical"
						}, {
							value: "h",
							label: "Horizontal"
						}],
						defaultValue: "v"
					}
				}
			}
This is what it looks like in the property panel

An interface titled "MyNewExtension" with the subtitle "Appearance". Under "Appearance", there are two hide and show buttons called "General" and "Orientation radio-buttons". Under the "Orientation radio-button", there are two radio buttons called "Vertical" and "Horizontal" with the title "Orientation radio-buttons" above them. The "Vertical" button is selected.

You can also define a new accordion item as a radio button property.

Example: Add custom radio button property as a new accordion item

	return {
		type: "items",
		component: "accordion",
		items: {
			MyAccordion: {
				type: "string",
				component: "radiobuttons",
				label: "Orientation radio-buttons",
				ref: "myproperties.orientation",
				options: [{
					value: "v",
					label: "Vertical"
				}, {
					value: "h",
					label: "Horizontal"
				}],
				defaultValue: "v"
			}
This is what it looks like in the property panel

An interface titled "MyNewExtension" with the subtitle "Orientation radio-buttons". Under "Orientation radio-buttons", there are two radio buttons called "Vertical" and "Horizontal" with the title "Orientation radio-buttons" above them. The "Vertical" button is selected.

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!