[jboss-cvs] jboss-seam/examples/wiki/view/includes ...

Christian Bauer christian at hibernate.org
Fri May 4 15:30:34 EDT 2007


  User: cbauer  
  Date: 07/05/04 15:30:33

  Modified:    examples/wiki/view/includes     ownerSelector.xhtml
                        deleteConfirmation.xhtml popupDialog.xhtml
                        directorySelector.xhtml
  Log:
  Fixed popups access keys
  
  Revision  Changes    Path
  1.3       +6 -1      jboss-seam/examples/wiki/view/includes/ownerSelector.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ownerSelector.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/view/includes/ownerSelector.xhtml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- ownerSelector.xhtml	4 May 2007 18:25:51 -0000	1.2
  +++ ownerSelector.xhtml	4 May 2007 19:30:33 -0000	1.3
  @@ -12,7 +12,12 @@
           <script type="text/javascript">jQuery(function() {
               jsf('dialogOwnerSelectionPopup')
                   .css({ minWidth: "700px", minHeight: "420px", width: "725px;", height: "450px;", top: "100px", left: "100px"})
  -                .jqm({trigger: jsf("openDialogOwnerSelection"), closeClass: "closeDialog", onShow: fadeIn, onHide: fadeOut});
  +                .jqm({
  +                    trigger: jsf("openDialogOwnerSelection"),
  +                    closeClass: "closeDialog",
  +                    onShow: fadeInPopupDialog,
  +                    onHide: fadeOutPopupDialog
  +                });
           });</script>
       </ui:define>
       <ui:define name="dialogTitle">Select owner...</ui:define>
  
  
  
  1.3       +6 -2      jboss-seam/examples/wiki/view/includes/deleteConfirmation.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: deleteConfirmation.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/view/includes/deleteConfirmation.xhtml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- deleteConfirmation.xhtml	4 May 2007 18:25:51 -0000	1.2
  +++ deleteConfirmation.xhtml	4 May 2007 19:30:33 -0000	1.3
  @@ -12,8 +12,12 @@
           <script type="text/javascript">jQuery(function() {
               jsf('dialogDeletePopup')
                   .css({ minWidth: "200px", minHeight: "150px", width: "300px;", height: "150px;", top: "300px", left: "300px"})
  -                .jqm({trigger: jsf("openDialogDelete"), closeClass: "closeDialog", onShow: fadeIn, onHide: fadeOut});
  -
  +                .jqm({
  +                    trigger: jsf("openDialogDelete"),
  +                    closeClass: "closeDialog",
  +                    onShow: fadeInPopupDialog,
  +                    onHide: fadeOutPopupDialog
  +                });
           });</script>
       </ui:define>
       <ui:define name="dialogTitle">Delete confirmation</ui:define>
  
  
  
  1.3       +1 -1      jboss-seam/examples/wiki/view/includes/popupDialog.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: popupDialog.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/view/includes/popupDialog.xhtml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- popupDialog.xhtml	4 May 2007 18:25:51 -0000	1.2
  +++ popupDialog.xhtml	4 May 2007 19:30:33 -0000	1.3
  @@ -30,7 +30,7 @@
               <h:panelGroup>
                   <ui:insert name="dialogControls"/>
                   <h:outputLink id="cancel" value="#" rendered="#{!hideCancelButton}"
  -                              accesskey="C" styleClass="buttonNonpersistent closeDialog"><span class="buttonLabel"><u>C</u>ancel</span></h:outputLink>
  +                              styleClass="buttonNonpersistent closeDialog"><span class="buttonLabel"><u>C</u>ancel</span></h:outputLink>
               </h:panelGroup>
           </h:form>
       </s:div>
  
  
  
  1.4       +10 -2     jboss-seam/examples/wiki/view/includes/directorySelector.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: directorySelector.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/view/includes/directorySelector.xhtml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- directorySelector.xhtml	4 May 2007 18:25:51 -0000	1.3
  +++ directorySelector.xhtml	4 May 2007 19:30:33 -0000	1.4
  @@ -13,13 +13,20 @@
           <script type="text/javascript">jQuery(function() {
               jsf('dialogDirectorySelectionPopup')
                   .css({ minWidth: "250px", minHeight: "250px", width: "250px;", height: "250px;", top: "200px", left: "200px"})
  -                .jqm({trigger: jsf("openDialogDirectorySelection"), closeClass: "closeDialog", onShow: fadeIn, onHide: fadeOut});
  +                .jqm({
  +                    trigger: jsf("openDialogDirectorySelection"),
  +                    closeClass: "closeDialog",
  +                    onShow: fadeInPopupDialog,
  +                    onHide: fadeOutPopupDialog
  +                });
           });</script>
       </ui:define>
       <ui:define name="dialogTitle">Select parent directory...</ui:define>
       <ui:define name="dialogContent">
   
  -        <h:form>
  +        Tree disabled, Richfaces issues...
  +        <!-- /*
  +        <h:form rendered="false">
               <rich:tree id="directoryTree" switchType="ajax"
                          value="#{writableDirectoryTree}" var="d"
                          style="margin: 10px;"
  @@ -34,6 +41,7 @@
                   </rich:treeNode>
               </rich:tree>
           </h:form>
  +        */ -->
   
       </ui:define>
   
  
  
  



More information about the jboss-cvs-commits mailing list