[open-ils-commits] [GIT] Evergreen ILS branch master updated. cfe2507fa9a5e67608b189a7b37aa9435550ad8c
Evergreen Git
git at git.evergreen-ils.org
Tue Oct 16 21:41:54 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, master has been updated
via cfe2507fa9a5e67608b189a7b37aa9435550ad8c (commit)
from 3e400639f1b6c8d948980507c37a45df1a79cba3 (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 cfe2507fa9a5e67608b189a7b37aa9435550ad8c
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