History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEADEV-5572
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Normal Normal
Assignee: Maxim Mossienko
Reporter: Mike Aizatsky
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
IDEA: Development

JSF attribute reference to a CSS class is not considered for unused calculations

Created: 12 Apr 06 18:02   Updated: 17 Apr 06 18:22
Component/s: J2EE.JSF
Fix Version/s: Demetra 5231, 5.1.2

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Fixed in build: 5,228


 Description  « Hide
<jsp:root
        xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
        xmlns:h="http://java.sun.com/jsf/html"
        xmlns:f="http://java.sun.com/jsf/core"
        >

    <jsp:directive.page contentType="text/html"/>

    <html>
    <head>
        <style>
            .demo {
                border-color: #000077;
                border-width: 1px;
                border-style: solid;
                margin: 10px;
                padding: 5px;
            }

            .demo_name, h2 {
                font-size: 12pt;
                font-weight: bold;
                font-family: Verdana;
                padding-bottom: 5px;
            }

            .sample {
                background-color: #ffffCC;
                padding: 10px;
            }

            .header {
                background-color: #DDDDDD;
                padding: 5px;
                margin: 10px
            }


        </style>
        <title>Simple jspx page</title>
    </head>


    <body>
    <f:view>

        <div class="demo">
            <div class="demo_name">Basic Demo</div>

            <div class="sample">
                <h:panelGroup id="myGroup1" styleClass="header">
                    <h:graphicImage
                            url="../logo_sm.gif"
                            />
                    <h:outputText value="Component 2"/>
                    <h:outputText value="Component 3"/>
                </h:panelGroup>
            </div>
        </div>

    </f:view>

    </body>

    </html>
</jsp:root>


 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.