Revision: 307
Author:   tfenne
Date:     2006-05-10 15:51:03 -0700 (Wed, 10 May 2006)
ViewCVS:  http://svn.sourceforge.net/stripes/?rev=307&view=rev

Log Message:
-----------
Fix for STS-195: disabled attribute of input tags is not correctly reset when 
tag pooling is involved.

Modified Paths:
--------------
    trunk/stripes/src/net/sourceforge/stripes/tag/InputTagSupport.java
Modified: trunk/stripes/src/net/sourceforge/stripes/tag/InputTagSupport.java
===================================================================
--- trunk/stripes/src/net/sourceforge/stripes/tag/InputTagSupport.java  
2006-05-07 20:34:59 UTC (rev 306)
+++ trunk/stripes/src/net/sourceforge/stripes/tag/InputTagSupport.java  
2006-05-10 22:51:03 UTC (rev 307)
@@ -353,6 +353,9 @@
         if (isDisabled) {
             set("disabled", "disabled");
         }
+        else {
+            getAttributes().remove("disabled");
+        }
     }
     public String getDisabled() { return get("disabled"); }
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development

Reply via email to