The component that configures the Grid stacked layout settings.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class GridStackedLayoutSettings : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender
Inheritance: objectComponentBaseGridStackedLayoutSettings
Implements:
Inherited Members
Constructors
public GridStackedLayoutSettings()
Methods
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Overrides:
public override Task SetParametersAsync(ParameterView parameters)
Overrides:
Properties
Child content of the settings component.
[Parameter]
public RenderFragment ChildContent { get; set; }
Specifies the number of columns to display per row in the stacked layout. This parameter is used only when DataLayoutMode is set to GridDataLayoutMode.Stacked. Note: This parameter is ignored when GridStackedLayoutColumns are defined.
[Parameter]
public int ColumnsCount { get; set; }
Gets the column widths as a space-separated string for CSS grid-template-columns.
public string ColumnWidths { get; }
Gets the effective columns count - either from explicit columns or ColumnsCount parameter.
public int EffectiveColumnsCount { get; }
Defines the stacked layout column definitions. Children: GridStackedLayoutColumn.
[Parameter]
public RenderFragment GridStackedLayoutColumns { get; set; }