Skip to main content

%ZEN.Component.checkbox

class %ZEN.Component.checkbox extends %ZEN.Component.control

Boolean checkbox control
This uses an HTML input=check control plus it displays a caption (caption) next to the checkbox and detects user mouse click on caption.
Unlike an HTML checkbox, this checkbox always submits a value. It submits a value of 1 or 0 to the server; The client side value is either true or false.

Property Inventory

Method Inventory

Parameters

parameter DEFAULTCLIENTTYPE = boolean;
Inherited description: The default value for the clientType property.
parameter DEFAULTCONTROLCLASS = checkbox;
Inherited description: The default css class used for the main element within this control. This is overridden by subclasses.
parameter DOMAIN = %ZEN;

Properties

property caption as %ZEN.Datatype.caption (ZENEXPRESSION = 1);
Additional caption displayed next to actual checkbox.
This is a localized value.
Property methods: captionDisplayToLogical(), captionGet(), captionIsValid(), captionLogicalToDisplay(), captionLogicalToOdbc(), captionNormalize(), captionSet()
property captionClass as %ZEN.Datatype.cssClass [ InitialExpression = "checkboxCaption" ];
CSS class to apply to the control's caption.
Property methods: captionClassDisplayToLogical(), captionClassGet(), captionClassIsValid(), captionClassLogicalToDisplay(), captionClassLogicalToOdbc(), captionClassNormalize(), captionClassSet()
property readonlyNobox as %ZEN.Datatype.boolean [ InitialExpression = 0 ];
If this is true then no checkbox will be built. Instead, it will write "Yes" or "No" based on the checkbox's value.
Property methods: readonlyNoboxDisplayToLogical(), readonlyNoboxGet(), readonlyNoboxIsValid(), readonlyNoboxLogicalToDisplay(), readonlyNoboxLogicalToOdbc(), readonlyNoboxLogicalToXSD(), readonlyNoboxNormalize(), readonlyNoboxSet(), readonlyNoboxXSDToLogical()

Methods

method %DrawHTML()
Inherited description: Static HTML display method: draw the BODY of this component as HTML.
Subclasses implement this in order to render the static HTML contents of a component.
method %SetDefaultValues()
This method fills in reasonable default values for this control. Used by tools (such as Control Tester) to dynamically create controls.
clientmethod clickCaption() [ Language = javascript ]
User click on caption for checkbox; toggle value;
clientmethod clickCheckbox() [ Language = javascript ]
User click on checkbox; update hidden value;
clientmethod getProperty(property, key) as %String [ Language = javascript ]
Override to get value of control
clientmethod onSerialize() [ Language = javascript ]
Get current value for serial state.
clientmethod setProperty(property, value, value2) [ Language = javascript ]
Set the value of a named property.

Inherited Members

Inherited Properties

Inherited Methods

FeedbackOpens in a new tab