Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

TypeDescription
stringPlain String string property
tagstring

String property that can contain

tags (e.g. 'Hello %%name%%')

%%tags%% or i18n keys

(i18n:com

.

mycompany.mykey).


Will be pre-processed before being provided to web component

Code Block
titleExample
Hello %%name%%

or

Code Block
titleExample
 i18n:com.mycompany.mykey
color

String color value

(e.g. #FFFFFF)

Code Block
titleExample
#FFFFFF
point

Point representation

Code Block
titleExample
{
	x: 10, 
	y: 20
}
dimension

Dimension representation

Code Block
titleExample
{
	width: 100, 
	height: 20
}
insets 
fontCSS Font Stringfont string
borderCSS Border Stringborder string
booleanBoolean value, either true or false
styleclass

String with space separated CSS classnames.Possible values supported by the component can be specified as hint for the developer

Code Block
titleExample specifying special classnames supported by the component as hint for the developer
{
	type:'styleclass', 
	values:[
		'btn',
		'btn-default',
		'btn-lg',
		'btn-sm',
		'btn-xs'
	]
}
doubleA floating point number
floatA floating point number
intAn integer number
longA number, size is twice an integer
shortA number, 16 bit
byteA number, 8 bit unsigned
dataprovider

Reference to Servoy a dataprovider, either a record or scope variable. Can be a complex object for supporting onDataChange

Code Block
titleExample
{ 
	type:'dataprovider', 
	ondatachange: { 
		onchange: 'onDataChangeMethodID', 
		callback: 'onDataChangeCallback'
	}
}
valuelistReference to Servoy a ValueList
formURL string pointing to a form (like tab in tabpanel)
format

Format string. Requires to be specified as object to specify which dataprovider property to map this format property on

Code Block
titleExample
{
	for: 'dataProviderID',
	type: 'format'
}
relationReference to Servoy a Relation
mediaReference to Servoy a Media entry
dateDate value
scrollbars..
tabSeq..

...