Kendo.Mvc.UI.Fluent.TileLayoutBuilder
Defines the fluent API for configuring the Kendo TileLayout for ASP.NET MVC.
Methods
Columns(System.Double)
Defines the number of columns.
Parameters
value System.Double
The value that configures the columns.
ColumnsWidth(System.String)
Determines the width of the columns. Numeric values are treated as pixels.
Parameters
value System.String
The value that configures the 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 action that configures the containers.
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 action that configures the gap.
Height(System.String)
Determines the height of the layout. Numeric values are treated as pixels.
Parameters
value System.String
The value that configures the height.
Navigatable(System.Boolean)
A value indicating whether keyboard navigation will be enabled.
Parameters
value System.Boolean
The value that configures the navigatable.
Reorderable(System.Boolean)
Determines whether the reordering functionality will be enabled.
Parameters
value System.Boolean
The value that configures the reorderable.
Resizable(System.Boolean)
Determines whether the resizing functionality will be enabled.
Parameters
value System.Boolean
The value that configures the resizable.
RowsHeight(System.String)
Determines the height of the rows. Numeric values are treated as pixels.
Parameters
value System.String
The value that configures the rowsheight.
Width(System.String)
Determines the width of the layout. Numeric values are treated as pixels.
Parameters
value System.String
The value that configures the 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")
)
%>