[
https://issues.apache.org/jira/browse/TRINIDAD-1036?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Gabrielle Crawford resolved TRINIDAD-1036.
------------------------------------------
Resolution: Fixed
Fix Version/s: 1.2.8-core
1.0.8-core
> Client Color Converter's getFormatHint() and DateRestrictionValidator return
> empty string for hints.
> -----------------------------------------------------------------------------------------------------
>
> Key: TRINIDAD-1036
> URL: https://issues.apache.org/jira/browse/TRINIDAD-1036
> Project: MyFaces Trinidad
> Issue Type: Bug
> Components: Components
> Reporter: Yee-Wah Lee
> Priority: Minor
> Fix For: 1.0.8-core, 1.2.8-core
>
> Attachments: trin11_1036.diff
>
>
> 1. Sample code to create a button which, when clicked, gets the format hint
> for a color field and displays it in an output text.
> <f:verbatim>
> <script language="javascript">
> function getHint ()
> {
> var colorField = document.getElementById ("sic1");
> var format = _getColorFieldFormat (colorField);
> var colorHint = document.getElementById ("help_sic1");
> colorHint.textContent = format.getFormatHint ();
> }
> </script>
> </f:verbatim>
> <tr:inputColor id="sic1" chooseId="cp1"
> label="Enter or select color from palette below">
> <f:facet name="help">
> <tr:outputText id="help_sic1" value="Format hint goes here if
> button is clicked"/>
> </f:facet>
> </tr:inputColor>
> <tr:commandButton onclick="getHint(this); return false;"
> text="Click for color hint"/>
> 2. Run the page and click the button - the output text is updated with the
> string "Example Format: ". It should instead reflect the patterns for the
> inputColor which are defaulted in the example above, i.e. "Example Format:
> RRGGBB, #RRGGBB, r,g,b"
> Here is another example using the DateRestrictionValidator
> 1. Go to this page, and look for the demo "Please no Mondays...!"
> http://www.irian.at/trinidad-demo/faces/convertValidate/dateRestrictionValidate.jspx
> 2. Pick a Monday and submit, get the following error:
> Enter a date from the following weekday(s): .
> It should be an array of days that are permissible.
> 2.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.