TagUtilsTagCheck Method (String, String, String, String, ChkFlags, Boolean, String) |
Generates an HTML INPUT tag with type="checkbox" configured as specified.
Namespace:
NetQuarry
Assembly:
EAP.WebMappers (in EAP.WebMappers.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static string TagCheck(
string id,
string val,
string onClick,
string tooltip,
ChkFlags flags,
bool neverDirty,
string cssClass
)
Public Shared Function TagCheck (
id As String,
val As String,
onClick As String,
tooltip As String,
flags As ChkFlags,
neverDirty As Boolean,
cssClass As String
) As String
Parameters
- id
- Type: SystemString
The ID to use for the tag. - val
- Type: SystemString
The value for the checkbox. - onClick
- Type: SystemString
Javascript to be executed when the user clicks on the checkbox. - tooltip
- Type: SystemString
The tooltip to use for the checkbox - flags
- Type: NetQuarryChkFlags
Flags specifying how the checkbox is to be rendered. - neverDirty
- Type: SystemBoolean
If set, changing this control's value will not be considered to make it's page dirty. - cssClass
- Type: SystemString
CssClass name(s) to add.
Return Value
Type:
StringThe HTML checkbox configured as specified.
See Also