Sun Identity Manager Deployment Reference

ProcedureTo Change Default Button Names

  1. On the line that defines the form name (in the header), change the name field


    <Form name=’Anonymous User Menu’>
    
       to
    
    <Form name=’Anonymous User Menu’ noDefaultButtons=true>

    At the bottom of the form, add the following fields for the Save and Cancel buttons, and change the labels as desired:


    <Field>
       <Display class=’Button’>
          <Property name=’label’ value=’Submit’/>
          <Property name=’name’ value=’submitButton’/>
          <Property name=’value’ value=’true’/>
          <Property name=’command’ value=’Save’/>
       </Display>
    </Field>
    <Field>
       <Display class=’Button’>
          <Property name=’label’ value=’Cancel’/>
          <Property name=’command’ value=’Cancel’/>
          <Property name=’location’ value=’true’/>
       </Display>
    </Field>