From 78f16346fe905d35e3593a030c1c3a8d8eec4757 Mon Sep 17 00:00:00 2001 From: phasefx Date: Fri, 13 Nov 2009 03:59:20 +0000 Subject: [PATCH] allow for blanket attribute tweaks for every column being produced by fm_columns git-svn-id: svn://svn.open-ils.org/ILS/trunk@14890 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/chrome/content/util/list.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Open-ILS/xul/staff_client/chrome/content/util/list.js b/Open-ILS/xul/staff_client/chrome/content/util/list.js index 8ec709289..abf49e96e 100644 --- a/Open-ILS/xul/staff_client/chrome/content/util/list.js +++ b/Open-ILS/xul/staff_client/chrome/content/util/list.js @@ -1576,6 +1576,11 @@ util.list.prototype = { } } if (column_extras) { + if (column_extras['*']) { + for (var attr in column_extras['*']) { + def[attr] = column_extras['*'][attr]; + } + } if (column_extras[col_id]) { for (var attr in column_extras[col_id]) { def[attr] = column_extras[col_id][attr]; -- 2.11.0