Main

August 25, 2006

Interationalized text jumble

I have a page that can be toggled between 2 different layouts. One of the layouts contains extra text. When the same page is loaded twice back to back, once using each layout, some of the text gets jumbled. I suspect that the entries pulled out of the resource bundle are cached and they aren't being updated when the page is reloaded.

JSF 1.1 Quirk: Form fields must be defined before field labels

Form fields must be defined before field labels or else warnings will appear in JSF 1.1 but it will be fixed in version 1.2.

09:47:18,594 WARN [HtmlLabelRenderer] Unable to find component 'currency'
(calling findComponent on component 'signup:_id16')

These warnings can be ignored, as they don't affect the functionality of the
page. The warnings can also be suppressed or the form field labels may be defined
after the corresponding form fields and use CSS styling to make the labels
appear to the left of/ on top of their respective fields.