Back to Devexpress

FormLayoutNestedExtensionFactory Class

aspnetmvc-devexpress-dot-web-dot-mvc-da1cf28a.md

latest1.7 KB
Original Source

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.v25.2.dll

NuGet Package : DevExpress.Web.Mvc5

Declaration

csharp
public class FormLayoutNestedExtensionFactory
vb
Public Class FormLayoutNestedExtensionFactory

The following members return FormLayoutNestedExtensionFactory objects:

Remarks

The following example illustrates how to use the FormLayoutNestedExtensionFactory class.

csharp
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

FormLayoutNestedExtensionFactory Members

DevExpress.Web.Mvc Namespace