Kendo.Mvc.UI.Fluent.TileLayoutBuilder
Defines the fluent API for configuring the Kendo UI TileLayout
Methods
Columns(System.Double)
Defines the number of columns.
Parameters
value System.Double
The value for Columns
ColumnsWidth(System.String)
Determines the width of the columns. Numeric values are treated as pixels.
Parameters
value System.String
The value for ColumnsWidth
Containers(System.Action<Kendo.Mvc.UI.Fluent.TileLayoutContainerFactory>)
An array with objects representing the settings of the layout items.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.TileLayoutContainerFactory>
The configurator for the containers setting.
Gap(System.Action<Kendo.Mvc.UI.Fluent.TileLayoutGapSettingsBuilder>)
An object holding values that determine the spacing between the layout items horizontally and vertically.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.TileLayoutGapSettingsBuilder>
The configurator for the gap setting.
Height(System.String)
Determines the height of the layout. Numeric values are treated as pixels.
Parameters
value System.String
The value for Height
Navigatable(System.Boolean)
A value indicating whether keyboard navigation will be enabled.
Parameters
value System.Boolean
The value for Navigatable
Navigatable
A value indicating whether keyboard navigation will be enabled.
Reorderable(System.Boolean)
Determines whether the reordering functionality will be enabled.
Parameters
value System.Boolean
The value for Reorderable
Reorderable
Determines whether the reordering functionality will be enabled.
Resizable(System.Boolean)
Determines whether the resizing functionality will be enabled.
Parameters
value System.Boolean
The value for Resizable
Resizable
Determines whether the resizing functionality will be enabled.
RowsHeight(System.String)
Determines the height of the rows. Numeric values are treated as pixels.
Parameters
value System.String
The value for RowsHeight
Width(System.String)
Determines the width of the layout. Numeric values are treated as pixels.
Parameters
value System.String
The value for Width
Events(System.Action<Kendo.Mvc.UI.Fluent.TileLayoutEventBuilder>)
Configures the client-side events.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.TileLayoutEventBuilder>
The client events action.
Example (ASPX)
@(Html.Kendo().TileLayout()
.Name("TileLayout")
.Events(events => events
.Resize("onResize")
)
)