Skip to main content
A newer version of this page is available. .
Tab

ASPxDataView.Layout Property

Gets or sets the layout mode of the ASPxDataView.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

[DefaultValue(Layout.Table)]
public Layout Layout { get; set; }

Property Value

Type Default Description
Layout **Table**

One of the Layout values.

Available values:

Name Description
Table

Data items are displayed using the fixed table layout with the specified column and row count.

Flow

Data items flow one after another, to fill the available page area.

Breakpoints

Organizes items according to custom layout scenarios for different browser widths.

Remarks

If the Layout property is set to Table, the control’s contents are displayed using a table with a predefined number of rows (DataViewTableLayoutSettings.RowsPerPage) and columns (DataViewTableLayoutSettings.ColumnCount). In this case, the item size is defined automatically and is changed with window resizing.

If this property is set to Flow, the content data items flow one after another with a predefined number of items on a page (DataViewDivBasedLayoutSettings.ItemsPerPage) to fill the available page area within the browser window in the best possible way. In this case, the item size is defined by the ItemStyle.Height and ItemStyle.Width properties and is not changed with window resizing.

See Also