aspnetmvc-devexpress-dot-web-dot-mvc-da1cf28a.md
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
public class FormLayoutNestedExtensionFactory
Public Class FormLayoutNestedExtensionFactory
The following members return FormLayoutNestedExtensionFactory objects:
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";
});
});
Object FormLayoutNestedExtensionFactory
See Also