From d984288cfd2c02d987d2901d2c00190320bb1436 Mon Sep 17 00:00:00 2001 From: erickson Date: Mon, 21 Jul 2008 03:21:48 +0000 Subject: [PATCH] displaying report columns vertically to prevent unnecessary scrolling git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_2@10082 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/web/reports/oils_rpt_editor.xhtml | 2 +- Open-ILS/web/reports/oils_rpt_report_editor.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Open-ILS/web/reports/oils_rpt_editor.xhtml b/Open-ILS/web/reports/oils_rpt_editor.xhtml index 007ced5782..c277bd5fe9 100644 --- a/Open-ILS/web/reports/oils_rpt_editor.xhtml +++ b/Open-ILS/web/reports/oils_rpt_editor.xhtml @@ -34,7 +34,7 @@ Report Columns: - + Pivot Label Column: diff --git a/Open-ILS/web/reports/oils_rpt_report_editor.js b/Open-ILS/web/reports/oils_rpt_report_editor.js index 8f3001862f..63432679c3 100644 --- a/Open-ILS/web/reports/oils_rpt_report_editor.js +++ b/Open-ILS/web/reports/oils_rpt_report_editor.js @@ -13,11 +13,11 @@ function oilsRptReportEditor(rptObject, folderWindow) { 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')); } ); -- 2.11.0