Author: buscob
Date: Sat Jan 9 20:06:32 2010
New Revision: 897530
URL: http://svn.apache.org/viewvc?rev=897530&view=rev
Log:
Moved TabBar Menus from the "body" decorator-section to the "pre-body" decorator section.
Modified:
ofbiz/trunk/applications/accounting/widget/CommonScreens.xml
Modified: ofbiz/trunk/applications/accounting/widget/CommonScreens.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/CommonScreens.xml?rev=897530&r1=897529&r2=897530&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/widget/CommonScreens.xml (original)
+++ ofbiz/trunk/applications/accounting/widget/CommonScreens.xml Sat Jan 9 20:06:32 2010
@@ -56,6 +56,16 @@
</actions>
<widgets>
<decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}">
+ <decorator-section name="pre-body">
+ <section>
+ <condition>
+ <if-has-permission permission="ACCOUNTING" action="_VIEW"/>
+ </condition>
+ <widgets>
+ <include-menu name="PaymentTabBar" location="component://accounting/widget/AccountingMenus.xml"/>
+ </widgets>
+ </section>
+ </decorator-section>
<decorator-section name="body">
<section>
<!-- do check for ACCOUNTING, _VIEW permission -->
@@ -63,7 +73,6 @@
<if-has-permission permission="ACCOUNTING" action="_VIEW"/>
</condition>
<widgets>
- <include-menu name="PaymentTabBar" location="component://accounting/widget/AccountingMenus.xml"/>
<include-menu name="PaymentSubTabBar" location="component://accounting/widget/AccountingMenus.xml"/>
<container style="leftclear">
<section>
|