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.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
Related API Members
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
Inheritance
Object
FormLayoutNestedExtensionFactory
See Also