Skip to content

OnPopulateWizard - cWebWidgetConfigurationWizard

Called during initialization of the cWebWidgetConfigurationWizard

Type: Event

Parameters

Parameter Type Description
aConfigurableProps tWidgetConfigProp[] Array of configurable props to potentially configure for the cWebWidget
aCurPropValues tWidgetConfigPropValue[] Array of values for the configurable props for the cWebWidget

Syntax

Procedure OnPopulateWizard tWidgetConfigProp[] aConfigurableProps tWidgetConfigPropValue[] aCurPropValues

Description

This event is called during initialization of the cWebWidgetConfigurationWizard.

When building a custom wizard, use this event to initialize certain areas like forms, combos, seed Data Dictionaries etc.

Procedure OnPopulateWizard tWidgetConfigProp[] aConfigurableProps tWidgetConfigPropValue[] aCurPropValues 
    String sAction 

    Get GetPropValue aCurPropValues '' "psAction" to sAction 

    If (sAction = "") ; 
        Move "QueryCustomer" to sAction 

    WebSet psValue of oActionRadio1 to sAction 
End_Procedure