Working with the ConfigurationProperty control

The ConfigurationProperty control provides a single row with either one or two columns within the parent template control.

Registering the control

The following Register directive registers the ConfigurationProperty control for use on a configuration page.

<%@ Register TagPrefix="Nintex" TagName="ConfigurationProperty" 
    src="~/_layouts/15/NintexWorkflow/ConfigurationProperty.ascx" %>

Declaring the control

The following example illustrates how to add a ConfigurationProperty control to a ConfigurationPropertySection control on a configuration page.

<Nintex:ConfigurationPropertySection runat="server" Id="MainControls1">
    <TemplateRowsArea>
        ...
        <Nintex:ConfigurationProperty runat="server" FieldTitle="Optional setting 1" RequiredField="False">
            <TemplateControlArea>
                ...
            </TemplateControlArea>
        </Nintex:ConfigurationProperty>
        ...
    </TemplateRowsArea>
</Nintex:ConfigurationPropertySection>

Implementing the control

The ConfigurationProperty control provides a single row with either one or two columns, as shown in the following example. By default, the control presents a single row with two columns, in which the first column displays the contents of the TemplateLabelArea property and the second column displays the contents of the TemplateControlArea property.

The appearance of the control can be adjusted in the following ways:

See Also

Concepts

Configuration pages

Operations

Working with configuration pages

Implementing template controls

Reference

JavaScript Reference

.NET Framework Reference