Table of Contents

Class HtmlHelperExtensions

Namespace
Kentico.Forms.Web.Mvc
Assembly
Kentico.Content.Web.Mvc.dll

Provides system extension methods for HtmlHelperExtensionPoint.

public static class HtmlHelperExtensions
Inheritance
object
HtmlHelperExtensions

Methods

FormComponentsStyles(HtmlHelperExtensionPoint)

Renders necessary stylesheet link tags for using Form builder based forms on a live site. If no form component specific stylesheet is available, an empty string is returned.

public static IHtmlContent FormComponentsStyles(this HtmlHelperExtensionPoint htmlHelper)

Parameters

htmlHelper HtmlHelperExtensionPoint

HtmlHelper extension.

Returns

IHtmlContent

Returns stylesheet link tags for form components, or an empty string.

Remarks

Form components' additional stylesheets are expected to reside within the '~/Content/FormComponents' directory. CSS files in that directory are bundled and this method renders a link tag referencing the bundle in its href attribute. The bundle exists only if the aforementioned directory does.

Exceptions

ArgumentNullException

htmlHelper is null.

FormZoneAsync(HtmlHelperExtensionPoint, string)

Renders form zone container.

public static Task<IHtmlContent> FormZoneAsync(this HtmlHelperExtensionPoint htmlHelper, string zoneName = null)

Parameters

htmlHelper HtmlHelperExtensionPoint

HtmlHelper extension.

zoneName string

Form zone name.

Returns

Task<IHtmlContent>

Returns HTML markup representing form zone container.

Remarks

This API supports the framework infrastructure and is not intended to be used directly from your code.

Exceptions

ArgumentException

Thrown when zoneName is empty.