Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
475
How can i include Applet in panel layout
posted

Hi all,

i want to add a applet into panel layout and i want to set the param value of the applet how can i do that. 

and i have tried like this but, the value of the param is sending as it is like #{test.userName} instead of actual value.

help me in this regard .

 

 <h:panelGrid binding="#{test.gridPanel1}" id="gridPanel1" style="height: 648px; left: -24px; top: -24px; position: absolute" width="552">
                            <applet
                                ARCHIVE="lms-common.jar"
                                CODE="ScheduleViewDesign.class" CODEBASE="../Clientlib/" HEIGHT="570"
                                NAME="recursionpanelapplet" WIDTH="550" id="appletID">
                                <param name="userName" value="#{test.userName}"/>
                            </applet>
                        </h:panelGrid>

 

 

thanks

Dayananda B V  

Parents
No Data
Reply
  • 1579
    posted

    Hello, Dayananda!

    I tried to make a simple application in which I set the param value of a simple applet. It worked that way:

    <f:verbatim>

    <applet code="com.infragistics.fapp.HelloWorld.class" width="200" height="200">

    <param name="name" value="</f:verbatim><h:outputText value="#{user.name}"/> <f:verbatim> ">

    </applet>

    </f:verbatim>

    Bozhidar

Children