OnPopulateWizard - cWebWidgetConfigurationWizard

Called during initialization of the cWebWidgetConfigurationWizard

Type: Event

Parameters: tWidgetConfigProp[] aConfigurableProps tWidgetConfigPropValue[][] aCurPropValues

ParameterDescription
aConfigurablePropsArray of configurable props to potentially configure for the cWebWidget
aCurPropValuesArray 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