[webwidgets]

The [webwidgets] section of the initialization file contains logical widget definitions for used in Dynamic Server Page (DSP) components.

LogicalWidgetName=PhysicalWidgetName{(WidgetProperty1=Value1;WidgetProperty2=Value2;...)}

Description

Each logical widget maps to a physical widget, and optionally sets some of its properties. The property values defined in this section override the hard-coded defaults of the physical widget.

The maximum length of the widget property string is 1024 characters.

You can use this section to define your own logical widgets.

[webwidgets]
; Logical to physical widget mapping
EditBox=htmlinput(html:type=text;detail=dblclick)
TextArea=htmltextarea(detail=dblclick)
CommandButton=htmlinput(html:type=button;clientsyntaxcheck=false)[syntax=ned]
CommandButton_updatable=htmlinput(html:type=button;clientsyntaxcheck=false)
CheckBox=htmlinput(html:type=checkbox)
DropDownList=htmlselect(html:size=1)
ListBox=htmlselect(html:size=3)
DatePicker=htmlinput(html:type=date)
RadioGroup=htmlradiogroup(style:display=inline-block)
...
AttributesOnly=genericHTML
DspContainer=dspcontainer

Related Topics