The PROPERTIES attribute is used to define a list of widget-specific characteristics.
PROPERTIES = ( { single-property| array-property | map-property} [,...] )
identifier = property-value
identifier = ( property-value [,...])
identifier = ( item-identifier = property-value[,...] )
{ numeric-value | "string-value" }
The PROPERTIES attribute is typically used to define the widget-specific attributes of a WEBCOMPONENT form item.
Property names and values are not checked, to let you freely set any characteristic of an external widget. You must verify that the front-end side implementation supports the specified properties.
WEBCOMPONENT f01 = FORMONLY.mycalendar,
COMPONENTTYPE = calendar,
PROPERTIES = (
type = "gregorian",
week_start = 2,
days_off = ( 1, 7 ),
dates_off = ( "????-11-25", "????-06-20" ),
day_titles = ( t1 = "Sunday",
t2 = "Monday",
t3 = "Tuesday",
t4 = "Wednesday",
t5 = "Thursday",
t6 = "Friday",
t7 = "Saturday"
);