Click or drag to resize

TagUtilsTagCheck Method (String, String, String, String, ChkFlags, Boolean)

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
)

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.

Return Value

Type: String
The HTML checkbox configured as specified.
See Also