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

Christian Bauer christian at hibernate.org
Wed Nov 14 05:19:44 EST 2007


  User: cbauer  
  Date: 07/11/14 05:19:44

  Modified:    examples/wiki/view/includes  pluginPreferencesForm.xhtml
  Log:
  Fixed bug in plugin preferences system, @RaiseEvent is not inherited in action subclasses
  
  Revision  Changes    Path
  1.6       +2 -2      jboss-seam/examples/wiki/view/includes/pluginPreferencesForm.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: pluginPreferencesForm.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/view/includes/pluginPreferencesForm.xhtml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- pluginPreferencesForm.xhtml	31 Aug 2007 13:38:12 -0000	1.5
  +++ pluginPreferencesForm.xhtml	14 Nov 2007 10:19:44 -0000	1.6
  @@ -33,10 +33,10 @@
                            rowClasses="rowEven,rowOdd"
                            cellpadding="0" cellspacing="0" border="0">
   
  -                <h:column>
  +                <h:column rendered="#{v.preferenceProperty.allowsInstanceOverride()}">
                           <h:outputText value="#{v.preferenceProperty.description}"/>
                   </h:column>
  -                <h:column>
  +                <h:column rendered="#{v.preferenceProperty.allowsInstanceOverride()}">
   
                       <s:div rendered="#{v.preferenceProperty.type.simpleName == 'Boolean'}">
                           <h:selectBooleanCheckbox value="#{v.value}" tabindex="1"/>
  
  
  



More information about the jboss-cvs-commits mailing list