Adding an Information Tag to the Assistant

Add an information tag to the assistant.

You can add information tags to a panel description or step. Information tags can contain more information about a specific step or task, but are not necessary for the task to be complete. Information tags are minimized by default, and can be expanded when required. The extra information is placed inside an information element in the XHTML file:
<information>Additional information goes here.</information>  

For this tutorial, you add the names of the physics models which are created in the first step of Task 3.

To add an information tag:

  1. Return to 03_Physics.xhtml.
  2. Add the information tag to the first list item:
    <ol>
        <!--First list item.-->
        <li><a href="staraction:createPhysicsContinuum">Create</a> a physics continuum.
            <!--Adds an information tag to first list item.--> 
            <information>The following physics models are suitable for this case:
                <ul>
                    <li>Three Dimensional</li> 
                    <li>Gradients</li>
                    <li>Steady</li>
                    <li>Gas</li>
                    <li>Segregated Flow</li>
                    <li>Constant Density</li>
                    <li>Laminar</li>
                </ul>
            </information></li>
  3. Save the file (Ctrl-S) and rebuild your project.