Column Control Subclasses

Previous Next

 

See Also

Check Box Column Control

HTML element: Checkbox

Add: If the checkbox column controls is not based on a domain you will need to add Yes/No options to the control (note that the negative option must be first). It would be preferable to define a variable data source, add your options and defaults to the variable, and connect the Check Box column control to this data source.

 

Html Area Column Control

HTML element: HTML area

 

Static Column Control

HTML element: TD

This control results in a non-editable field, just as if the disabled property has been set on a text column control. A static Column control is easier to customize than a Text Column Control.

 

Image Column Control

HTML element: IMG

The URI of an image provided as data results in the display of the image.

 

Custom Column Control

HTML element: DIV TD

The handling of this control is up to you: use the custscript.js function setcustomvalue.

 

Password Column Control

HTML element: INPUT type=”password”

 

Radio Column Control:

HTML element: INPUT type=”radio”

 

Text Column Control

HTML element: INPUT type=”text”

 

Text Area Column Control

HTML element: INPUT type=”text”

 

Select Column Control

HTML element: SELECT

If you want a Select Column control with defaults that are not related to a domain you can define a variable data source, add your options and defaults to the variable, and connect the select control to this data source.