From: <car...@us...> - 2010-04-23 14:49:12
|
Revision: 2297 http://openutils.svn.sourceforge.net/openutils/?rev=2297&view=rev Author: carlocolombo Date: 2010-04-23 14:49:06 +0000 (Fri, 23 Apr 2010) Log Message: ----------- [CONTROLS-22]Column headers get through messages Modified Paths: -------------- trunk/openutils-mgnlcontrols/src/main/resources/dialogs/grid.ftl Modified: trunk/openutils-mgnlcontrols/src/main/resources/dialogs/grid.ftl =================================================================== --- trunk/openutils-mgnlcontrols/src/main/resources/dialogs/grid.ftl 2010-04-23 14:46:11 UTC (rev 2296) +++ trunk/openutils-mgnlcontrols/src/main/resources/dialogs/grid.ftl 2010-04-23 14:49:06 UTC (rev 2297) @@ -112,7 +112,7 @@ [#list configuration.columns?values as colmap] [#if (colmap.type?? && colmap.type = 'checkbox')] checkColumns.push(new Ext.grid.CheckColumn({ - header: '${colmap.header?js_string}', + header: '${msgs.get(colmap.header?js_string)}', dataIndex: '${colmap_index}', width: 40 })); @@ -126,7 +126,7 @@ checkColumns[checkIndex++] [#else] { - header: '${colmap.header?js_string}', + header: '${msgs.get(colmap.header?js_string)}', dataIndex: '${colmap_index}', sortable: false, [#if (colmap.type?? && (colmap.type = 'link' || colmap.type = 'uuidLink'))] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |