Vue Form - TabbedItem
This article describes configuration options of a tabbed form item.
cssClass
Specifies a CSS class to be applied to the form item.
In Form, you can customize the appearance of form items using CSS styles. To apply a style to an item, implement a CSS class, which may contain various properties, and assign the name of this class to the cssClass option of the item.
itemType
Specifies the type of the current item.
The structure of the form item object depends on the value of this option.
This article describes the structure of an item whose type is "tabbed". The following item types are also available.
simple
Simple item is an editor-label pair usually bound to a formData object field used to display and modify this field.group
Group item is a section consisting of a caption and child form items. You can customize the layout options for each group separately.empty
Empty item is an empty span between neighboring items. You can specify the number of columns spanned by an empty item.
name
Specifies a name that identifies the form item.
Use the name to access the form item in methods like itemOption(id).
tabPanelOptions
Holds a configuration object for the TabPanel widget used to display the current form item.
See Also
tabs[]
An array of tab configuration objects.
Each item of the array passed to this option can have fields described below.