You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by Legolas Woodland <le...@gmail.com> on 2006/01/18 22:22:11 UTC

how i can change this tags usage to jsf standard mode.

Hi
Thank you for reqding my post.
how i can translate this tags to equal jsf tags (I mean how i should 
change useBean to jsf equal ones.)

<jsp:useBean id="pageViews" 
class="de.laures.cewolf.example.PageViewCountData"/>
<cewolf:chart
    id="line"
    title="Page View Statistics"
    type="line"
    xaxislabel="Page"
    yaxislabel="Views">
    <cewolf:data>
        <cewolf:producer id="pageViews"/>
    </cewolf:data>
</cewolf:chart>
<p>
<cewolf:img chartid="line" renderer="cewolf" width="400" height="300"/>

for example how i can replace that jsp:useBean with something jsf-ish .

Thank you