[open-ils-commits] [GIT] Evergreen ILS branch rel_2_3 updated. 3fcd13fb8ab41910719ca53a9d1313fd39880767
Evergreen Git
git at git.evergreen-ils.org
Tue Oct 16 21:42:16 EDT 2012
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".
The branch, rel_2_3 has been updated
via 3fcd13fb8ab41910719ca53a9d1313fd39880767 (commit)
from af303657985f5d27bd100b14c1630f7c7b3e4524 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 3fcd13fb8ab41910719ca53a9d1313fd39880767
Author: Bill Erickson <berick at esilibrary.com>
Date: Fri Sep 28 13:58:07 2012 -0400
ACQ invoice tabs scroll improvements
Avoid nested scrollbars on tabbed ACQ invoice UI. This is done by
removing a ContentPane layer and setting doLayout='false' on the
TabContainer, which allows the individual tabs to control their own
height dynamically, which means no more hard-set 600px height on the
tabs.
Signed-off-by: Bill Erickson <berick at esilibrary.com>
Signed-off-by: Kathy Lussier <klussier at masslnc.org>
diff --git a/Open-ILS/src/templates/acq/invoice/view.tt2 b/Open-ILS/src/templates/acq/invoice/view.tt2
index 27f2916..a4a60fb 100644
--- a/Open-ILS/src/templates/acq/invoice/view.tt2
+++ b/Open-ILS/src/templates/acq/invoice/view.tt2
@@ -44,11 +44,13 @@
</div>
</div>
+ <!--
<div dojoType="dijit.layout.ContentPane" layoutAlign="client">
+ -->
- <div dojoType="dijit.layout.TabContainer" style="width: 96%; height: 100%;">
+ <div dojoType="dijit.layout.TabContainer" style="width: 96%; height: 100%;" doLayout='false'>
<div dojoType="dijit.layout.ContentPane"
- class='oils-acq-detail-content-pane' title="Invoice" selected='true' style='height:600px'>
+ class='oils-acq-detail-content-pane' title="Invoice" selected='true'>
<script type='dojo/connect' event='onShow'>
// the table is left at display=none on subsequent tab views
@@ -302,7 +304,7 @@
</div>
</div> <!-- tab 2 -->
</div> <!-- end tabcontainer -->
- </div> <!-- end contentpane -->
+ <!--</div>--> <!-- end contentpane -->
</div>
<div dojoType='openils.widget.ProgressDialog' jsId='progressDialog'></div>
<div jsId='extraItemsDialog' dojoType="dijit.Dialog" title="Extra Items">
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/src/templates/acq/invoice/view.tt2 | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list