Tab, block and field
Last updated
Last updated
A module consists of tabs, blocks and fields to easily classify the data.
A tab contains blocks. They are useful for segmenting information in a module that contains a large number of fields. Using the tabs, you can also create multi-step forms.
Tabs links are visible only if there are at least two tabs.
For creating a tab, add the following code into your migration file:
A block contains fields. They are useful for grouping fields. For creating a block, add the following code into your migration file:
Even if it is possible to find the module linked to a block thanks to its related tab ($block->tab->module_id
), we prefer to add an attribute module_id
to improve queries performances.
A field is linked to an attribute of the module's table. You can easily create several type of fields thanks to Uitypes. For creating a field, add the following code into your migration file:
Even if it is possible to find the module linked to a field thanks to its related tab ($field->block->tab->module_id
), we prefer to add an attribute module_id
to improve queries performances.
You can specify a lot of settings params into the data
attribute. This params are linked to the field's uitype. However, here is the list of default settings params common to all uitypes:
As each uitype is autonomous, it can use other options. To see all uitypes options, please go to the Default Uitypes page or to the documentation of the custom uitype you are using.
Attribute
Type
Description
label
string
This label will be translated thanks to the localization file.
icon
string
The tab's icon. Uccello uses Material icons.
You can chose an icon here: https://material.io/tools/icons
data
array
Useful to pass some settings params.
sequence
int
The display sequence for ordering tabs.
module_id
int
The related module's id.
Attribute
Type
Description
label
string
This label will be translated thanks to the language file.
icon
string
The block's icon. Uccello uses Material icons.
You can chose an icon here: https://material.io/tools/icons
data
array
Useful to pass some settings params.
sequence
int
The display sequence for ordering blocks.
tab_id
int
The related tab's id.
module_id
int
The related module's id.
Attribute
Type
Description
name
string
The field's name
uitype_id
int
The type of field.
displaytype_id
int
Useful to choose in which pages the field will be visible
data
array
Useful to pass some settings params.
sequence
int
The display sequence for ordering fields.
block_id
int
The related block's id.
module_id
int
The related module's id.
Param
Description
Default
column
Name of the associated column in the module's table
Field's name
default
Default value
icon
The field's icon. Uccello uses Material icons. You can chose an icon here: https://material.io/tools/icons
label
This label will be translated thanks to the language file.
Field's name
large
Useful for displaying the field over the full width.
false
rules
Form validation rules. See the Official documentation.