[rhmessaging-commits] rhmessaging commits: r3715 - mgmt/trunk/wooly/python/wooly.

rhmessaging-commits at lists.jboss.org rhmessaging-commits at lists.jboss.org
Tue Nov 17 11:39:29 EST 2009


Author: eallen
Date: 2009-11-17 11:39:29 -0500 (Tue, 17 Nov 2009)
New Revision: 3715

Modified:
   mgmt/trunk/wooly/python/wooly/forms.py
Log:
Changed the tabindex of the Submit and Cancel button to agree with their display order.

Modified: mgmt/trunk/wooly/python/wooly/forms.py
===================================================================
--- mgmt/trunk/wooly/python/wooly/forms.py	2009-11-17 16:24:19 UTC (rev 3714)
+++ mgmt/trunk/wooly/python/wooly/forms.py	2009-11-17 16:39:29 UTC (rev 3715)
@@ -498,11 +498,11 @@
         self.add_parameter(self.return_url)
 
         self.submit_button = self.Submit(app, "submit")
-        self.submit_button.tab_index = 200
+        self.submit_button.tab_index = 201
         self.add_button(self.submit_button)
 
         self.cancel_button = self.Cancel(app, "cancel")
-        self.cancel_button.tab_index = 201
+        self.cancel_button.tab_index = 200
         self.add_button(self.cancel_button)
 
     def submit(self, session):



More information about the rhmessaging-commits mailing list