ThinDetailRendererAddControlsBoot Method |
Add mapper field controls for a Boolstrap detail page.
Namespace:
NetQuarry.Data.WebMappers
Assembly:
EAP.WebMappers (in EAP.WebMappers.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static int AddControlsBoot(
Control host,
IMapper map,
bool isDesignMode,
ControlCreationFlags purpose,
string fieldList = null,
Control outerHost = null
)
Public Shared Function AddControlsBoot (
host As Control,
map As IMapper,
isDesignMode As Boolean,
purpose As ControlCreationFlags,
Optional fieldList As String = Nothing,
Optional outerHost As Control = Nothing
) As Integer
Parameters
- host
- Type: System.Web.UIControl
The control hosting the field controls to be created. - map
- Type: NetQuarry.DataIMapper
The mapper. - isDesignMode
- Type: SystemBoolean
Specifies whether or not to render in design mode. - purpose
- Type: NetQuarry.DataControlCreationFlags
The purpose of the rendering. - fieldList (Optional)
- Type: SystemString
The fields to render, optional. - outerHost (Optional)
- Type: System.Web.UIControl
Outer control hosting the entire layout content and around which a formatting wrapper may be added.
This is typically null and provided only when the fields are being rendered as part of a larger
construct such as with a Chooser control in report filtering.
Return Value
Type:
Int32The number of visible controls added.
See Also