Class FormWrapperRenderingConfiguration
Configuration describing rendering of an optional wrapping HTML element around Form builder's form.
public class FormWrapperRenderingConfiguration
- Inheritance
-
objectFormWrapperRenderingConfiguration
- Extension Methods
Properties
CONTENT_PLACEHOLDER
Defines a placeholder for wrapped elements if CustomHtmlEnvelopeString is used.
public static string CONTENT_PLACEHOLDER { get; }
Property Value
- string
- See Also
ChildConfiguration
Gets or sets child element rendering configuration. Use this property to nest multiple wrapping elements.
public ElementRenderingConfiguration ChildConfiguration { get; set; }
Property Value
CustomHtmlEnvelopeString
Get or sets custom HTML envelope. Within a custom HTML code must be used CONTENT_PLACEHOLDER value.
public string CustomHtmlEnvelopeString { get; set; }
Property Value
- string
Remarks
Defined HTML in is static and is not updated after form submit.
- See Also
ElementName
Gets or sets element name to be rendered.
public string ElementName { get; set; }
Property Value
- string
HtmlAttributes
Gets or sets optional attributes that should be added to the element. An empty dictionary by default.
public IDictionary<string, object> HtmlAttributes { get; set; }
Property Value
- IDictionary<string, object>