Hello ,
We are trying to localize DataSource field prompts but for some reason that`s not working .
Here is our datasource xml...
So the hardcoded value for the field "name" works fine ( I can see "Hello" on Hover Over), but the localized value for the field "comments" doesn`t work .
Please see attached screenshot.
We are using SmartGWTEE3.1 //// Isomorphic SmartClient/SmartGWT Framework SNAPSHOT_v8.3d_2012-07-04
Thanks.
We are trying to localize DataSource field prompts but for some reason that`s not working .
Here is our datasource xml...
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <DataSource ID="calendar" xmlns:fmt="WEB-INF/" tableName="ops_calendar" inheritsFrom="system" serverType="generic"> <fmt:bundle basename="dictionary" /> <title><fmt:message key="ops_calendar.label" /></title> <pluralTitle><fmt:message key="ops_calendar.label.plural"/></pluralTitle> <fields> <field name="name" type="text" length="100" required="true"> <title><fmt:message key="ops_calendar.name.label"/></title> <prompt>Hello</prompt> </field> <field name="comments" type="text" length="100" > <title><fmt:message key="ops_calendar.comments.label"/></title> <prompt><fmt:message key="ops_calendar.comments.hint"/></prompt> </field> ...
Please see attached screenshot.
We are using SmartGWTEE3.1 //// Isomorphic SmartClient/SmartGWT Framework SNAPSHOT_v8.3d_2012-07-04
Thanks.
Comment