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

FormLayoutNestedExtensionFactory Class

Contains helper methods to create DevExpress MVC data editors as nested editors within the MVC FormLayout extension.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.1.dll

Declaration

public class FormLayoutNestedExtensionFactory

The following members return FormLayoutNestedExtensionFactory objects:

Remarks

The following example illustrates how to use the FormLayoutNestedExtensionFactory class.

settings.Items.Add(i => {
    i.Name = "FirstName";
    i.NestedExtension().TextBox(tb => {
        tb.Width = Unit.Percentage(100);
        tb.Properties.NullText= "Enter name";
    });
});

Online Demo

Form Layout - Data Binding

Inheritance

Object
FormLayoutNestedExtensionFactory
See Also