You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by se...@apache.org on 2012/04/13 12:14:35 UTC

svn commit: r1325706 - /incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/contentviews/baseContentSaveView.lzx

Author: sebawagner
Date: Fri Apr 13 10:14:35 2012
New Revision: 1325706

URL: http://svn.apache.org/viewvc?rev=1325706&view=rev
Log:
Fix "new record" text to appropriate position in save button bar of administration panels

Modified:
    incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/contentviews/baseContentSaveView.lzx

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/contentviews/baseContentSaveView.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/contentviews/baseContentSaveView.lzx?rev=1325706&r1=1325705&r2=1325706&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/contentviews/baseContentSaveView.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/contentviews/baseContentSaveView.lzx Fri Apr 13 10:14:35 2012
@@ -38,7 +38,7 @@
 	</handler>
     
     <method name="hideNewRecordText">
-        this._savecontentbar._newRecord.setAttribute('visibility','hidden');
+        this._newRecord.setAttribute('visibility','hidden');
     </method>
     
 	<event name="onreload" />
@@ -63,17 +63,20 @@
 	        	onclick="this.parent.parent.doDeleteEvent()"  />
         </state>
         
-		<labelText name="_newRecord" visibility="hidden" labelid="344" fgcolor="green" width="150" />       
+		  
 		 	 	      	
     </view>
     
+    <labelText name="_newRecord" x="120"
+   						visibility="hidden" labelid="344" fgcolor="green" width="150" />     
+    
     <method name="addViewToObserver" args="obj">
     	if (this.observerViews==null) this.observerViews = new Array();
         this.observerViews.push(obj);
     </method>
 	
 	<method name="doAddEvent">
-		this._savecontentbar._newRecord.setAttribute('visibility','visible');
+		this._newRecord.setAttribute('visibility','visible');
 		this.onnew.sendEvent();
 	</method>