Wizard Parameters

Use these parameters when running wizards using the Wizard servlet.

See Also
Western European Languages
Language Parameter
Framework.properties

ematrix.frame.font.width—Controls the width of text field widgets in wizards by determining the number of columns wide each widget will be. The parameter accepts any integer and the default value is 9. The number of columns is determined by dividing the number of pixels specified for the width of each widget (in the wizard definition) by the number entered for this parameter. For example, suppose a widget is defined with a pixel width of 100 and the default value of 9 is used for the font.width parameter. 100 divided by 9 is 11, so the widget would be 11 columns wide.

   <context-param id="ContextParam_#">
      <param-name>ematrix.frame.font.width</param-name>
      <param-value>9</param-value>
   </context-param>

ematrix.frame.font.height—Works the same way as the font.width parameter, except that this parameter controls the height of widgets and affects multiline text fields and listboxes. The default value is 16.

   <context-param id="ContextParam_#">
      <param-name>ematrix.frame.font.height</param-name>
      <param-value>16</param-value>
   </context-param>

ematrix.frame.warn.unsupported—When set to true, the Wizard servlet displays a warning when a wizard uses an unsupported command. When set to false, the default, the Wizard servlet ignores unsupported commands and gives no feedback.

   <context-param id="ContextParam_#">
      <param-name>ematrix.frame.warn.unsupported</param-name>
      <param-value>false</param-value>
   </context-param>