You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2007/09/04 15:15:05 UTC

svn commit: r572663 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIDatePicker.java

Author: bommel
Date: Tue Sep  4 06:15:05 2007
New Revision: 572663

URL: http://svn.apache.org/viewvc?rev=572663&view=rev
Log:
TOBAGO-465 tabindex

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIDatePicker.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIDatePicker.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIDatePicker.java?rev=572663&r1=572662&r2=572663&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIDatePicker.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIDatePicker.java Tue Sep  4 06:15:05 2007
@@ -215,7 +215,7 @@
 
     final UICommand okButton =
         (UICommand) ComponentUtil.createComponent(facesContext,
-            org.apache.myfaces.tobago.component.UICommand.COMPONENT_TYPE,
+            org.apache.myfaces.tobago.component.UIButtonCommand.COMPONENT_TYPE,
             RENDERER_TYPE_BUTTON);
     buttonPanel.getChildren().add(okButton);
     okButton.setId("ok" + DatePickerController.CLOSE_POPUP);
@@ -225,7 +225,7 @@
 
     final UICommand cancelButton =
         (UICommand) ComponentUtil.createComponent(facesContext,
-            org.apache.myfaces.tobago.component.UICommand.COMPONENT_TYPE,
+            org.apache.myfaces.tobago.component.UIButtonCommand.COMPONENT_TYPE,
             RENDERER_TYPE_BUTTON);
     buttonPanel.getChildren().add(cancelButton);
     attributes = cancelButton.getAttributes();