[open-ils-commits] r10082 - branches/rel_1_2/Open-ILS/web/reports
svn at svn.open-ils.org
svn at svn.open-ils.org
Sun Jul 20 23:21:50 EDT 2008
Author: erickson
Date: 2008-07-20 23:21:48 -0400 (Sun, 20 Jul 2008)
New Revision: 10082
Modified:
branches/rel_1_2/Open-ILS/web/reports/oils_rpt_editor.xhtml
branches/rel_1_2/Open-ILS/web/reports/oils_rpt_report_editor.js
Log:
displaying report columns vertically to prevent unnecessary scrolling
Modified: branches/rel_1_2/Open-ILS/web/reports/oils_rpt_editor.xhtml
===================================================================
--- branches/rel_1_2/Open-ILS/web/reports/oils_rpt_editor.xhtml 2008-07-21 03:11:38 UTC (rev 10081)
+++ branches/rel_1_2/Open-ILS/web/reports/oils_rpt_editor.xhtml 2008-07-21 03:21:48 UTC (rev 10082)
@@ -34,7 +34,7 @@
</tr>
<tr>
<th>Report Columns:</th>
- <td nowrap='nowrap'><b id='oils_rpt_report_editor_cols'/></td>
+ <td><b id='oils_rpt_report_editor_cols'/></td>
</tr>
<tr class='hide_me' id='oils_rpt_editor_pivot_label_row'>
<th>Pivot Label Column:</th>
Modified: branches/rel_1_2/Open-ILS/web/reports/oils_rpt_report_editor.js
===================================================================
--- branches/rel_1_2/Open-ILS/web/reports/oils_rpt_report_editor.js 2008-07-21 03:11:38 UTC (rev 10081)
+++ branches/rel_1_2/Open-ILS/web/reports/oils_rpt_report_editor.js 2008-07-21 03:21:48 UTC (rev 10082)
@@ -13,11 +13,11 @@
appendClear(DOM.oils_rpt_report_editor_template_creator, tmpl.owner().usrname());
appendClear(DOM.oils_rpt_report_editor_template_description, tmpl.description());
- appendClear(DOM.oils_rpt_report_editor_cols,' | ');
iterate(rptObject.def.select,
function(i) {
if(i)
- DOM.oils_rpt_report_editor_cols.appendChild(text(i.alias +' | '));
+ DOM.oils_rpt_report_editor_cols.appendChild(text(i.alias));
+ DOM.oils_rpt_report_editor_cols.appendChild(document.createElement('br'));
}
);
More information about the open-ils-commits
mailing list