You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by bu...@apache.org on 2003/04/30 05:40:53 UTC

DO NOT REPLY [Bug 19457] New: - html:frame cannot set noresize

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=19457>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=19457

html:frame cannot set noresize

           Summary: html:frame cannot set noresize
           Product: Struts
           Version: 1.1 RC1
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Custom Tags
        AssignedTo: struts-dev@jakarta.apache.org
        ReportedBy: aaron_naas@yahoo.com


FrameTag.java contains:

        if (noresize) {
            results.append(" noresize=\"noresize\"");
        }

Which ALWAYS puts (regardless of setting): noresize="noresize"
Maybe you wanted:

        if (noresize) {
            results.append(" noresize=\""+noresize+"\"");
        }

Or better yet, maybe:

        if (noresize) {
            results.append(" noresize ");
        }

---------------------------------------------------------------------
To unsubscribe, e-mail: struts-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-dev-help@jakarta.apache.org