DataColumn2
DataColumn2
#
Bases: DataColumn
Extends flet.DataColumn
,
adding the ability to set relative column size and fixed column width.
Meant to be used as an item of DataTable2.columns
.
col
#
col: ResponsiveNumber = 12
If a parent of this control is a ResponsiveRow
,
this property is used to determine
how many virtual columns of a screen this control will span.
Can be a number or a dictionary configured to have a different value for specific
breakpoints, for example col={"sm": 6}
.
This control spans the 12 virtual columns by default.
/// details | Dimensions type: info | Breakpoint | Dimension | |---|---| | xs | <576px | | sm | ≥576px | | md | ≥768px | | lg | ≥992px | | xl | ≥1200px | | xxl | ≥1400px | ///
disabled
#
disabled: bool = False
Every control has disabled
property which is False
by default - control and all
its children are enabled.
Note
The value of this property will be propagated down to all children controls recursively.
/// details | Example type: example For example, if you have a form with multiple entry controls you can disable them all together by disabling container:
///
expand
#
expand_loose
#
expand_loose: bool = False
Allows the control to expand along the main axis if space is available, but does not require it to fill all available space.
More information here.
fixed_width
#
fixed_width: Number | None = None
Defines absolute width of the column in pixels
(as opposed to relative size
used by default).
heading_row_alignment
#
heading_row_alignment: MainAxisAlignment | None = None
Defines the horizontal layout of the label and sort indicator in the heading row.
label
#
label: StrOrControl
numeric
#
numeric: bool = False
Whether this column represents numeric data or not.
The contents of cells of columns containing numeric data are right-aligned.
on_sort
#
on_sort: EventHandler[DataColumnSortEvent] | None = None
Called when the user asks to sort the table using this column.
If not set, the column will not be considered sortable.
opacity
#
opacity: Number = 1.0
Defines the transparency of the control.
Value ranges from 0.0
(completely transparent) to 1.0
(completely opaque
without any transparency).
parent
#
parent: BaseControl | None
The direct ancestor(parent) of this control.
It defaults to None
and will only have a value when this control is mounted
(added to the page tree).
The Page
control (which is the root of the tree) is an exception - it always
has parent=None
.
size
#
size: DataColumnSize | None = S
Column sizes are determined based on available width by distributing it to individual columns accounting for their relative sizes.
tooltip
#
tooltip: str | None = None
The column heading's tooltip.
This is a longer description of the column heading, for cases where the heading might have been abbreviated to keep the column width to a reasonable size.
visible
#
visible: bool = True
Every control has visible
property which is True
by default - control is
rendered on the page. Setting visible
to False
completely prevents control (and
all its children if any) from rendering on a page canvas. Hidden controls cannot be
focused or selected with a keyboard or mouse and they do not emit any events.
build
#
Called once during control initialization to define its child controls. self.page is available in this method.