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

ASPxGridViewEditingSettings.UseFormLayout Property

Specifies if the built-in FormLayout is used in the edit form.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(true)]
public bool UseFormLayout { get; set; }

Property Value

Type Default Description
Boolean **true**

true, if the form layout is used; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to UseFormLayout
ASP.NET Controls and MVC Extensions ASPxGridView
.SettingsEditing .UseFormLayout
GridViewProperties
.SettingsEditing .UseFormLayout
ASP.NET Bootstrap Controls BootstrapGridView
.SettingsEditing .UseFormLayout
ASP.NET MVC Extensions GridViewSettings
.SettingsEditing .UseFormLayout
GridViewSettings<RowType>
.SettingsEditing .UseFormLayout
MVCxGridView
.SettingsEditing .UseFormLayout
MVCxGridViewProperties
.SettingsEditing .UseFormLayout

Remarks

Use the UseFormLayout property to control if the built-in FormLayout is used in the edit form. The embedded FormLayout settings can be customized at the grid level using the ASPxGridView.EditFormLayoutProperties property.

The FormLayout layout items are gathered in the GridViewFormLayoutProperties.Items collection and associated with grid data columns using their ColumnLayoutItem.ColumnName property.

See Also