[open-ils-commits] r14908 - trunk/Open-ILS/xul/staff_client/chrome/content/util (phasefx)
svn at svn.open-ils.org
svn at svn.open-ils.org
Fri Nov 13 13:42:06 EST 2009
Author: phasefx
Date: 2009-11-13 13:42:02 -0500 (Fri, 13 Nov 2009)
New Revision: 14908
Modified:
trunk/Open-ILS/xul/staff_client/chrome/content/util/list.js
Log:
fm_columns flag for prefixing the class label to the field label
Modified: trunk/Open-ILS/xul/staff_client/chrome/content/util/list.js
===================================================================
--- trunk/Open-ILS/xul/staff_client/chrome/content/util/list.js 2009-11-13 18:23:03 UTC (rev 14907)
+++ trunk/Open-ILS/xul/staff_client/chrome/content/util/list.js 2009-11-13 18:42:02 UTC (rev 14908)
@@ -1580,6 +1580,9 @@
for (var attr in column_extras['*']) {
def[attr] = column_extras['*'][attr];
}
+ if (column_extras['*']['expanded_label']) {
+ def.label = my_class.label + ': ' + def.label;
+ }
}
if (column_extras[col_id]) {
for (var attr in column_extras[col_id]) {
More information about the open-ils-commits
mailing list