Wrong component tags used in Developers Guide on Dialogs
--------------------------------------------------------
Key: TRINIDAD-1667
URL: https://issues.apache.org/jira/browse/TRINIDAD-1667
Project: MyFaces Trinidad
Issue Type: Bug
Components: Documentation
Reporter: Erik Finnman
Priority: Minor
In the page detailing how to work with the dialog framework on
http://myfaces.apache.org/trinidad/devguide/dialogs.html, the example dialog
page uses tags that do not exists:
...
<tr:panelForm>
<tr:inputText label="Number 1:" value="#{chooseInteger.value1}"
required="true" />
<tr:inputText label="Number 2:" value="#{chooseInteger.value2}"
required="true" />
</tr:panelForm>
<!-- Two buttons ->
<tr:panelGroup layout="horizontal">
<tr:commandButton text="Submit" action="#{chooseInteger.select}"/>
<tr:commandButton text="Cancel" immediate="true"
action="#{chooseInteger.cancel}"/>
</tr:panelGroup>
...
Neither "panelForm" nor "panelGroup" exits - using "panelFormLayout" and
"panelGroupLayout" instead made the example work.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.