hi,

i have a feedback based on javascript. basically, i want to populate a 
javascript function's body with all messages, so it will show them one by one.

the final result will be like:
function showFeedback() {
        var message;
        message += "first feedback\n";
        message += "second feedback\n";

        alert(message);
}

theoretically, in wicket, create a panel with something like:
function showFeedback() {
        var message;
        <span wicket:id="feedback">
        message += "<span wicket:id="message"></span>
        </span>
        alert(message);
}

but, will the parser handle this? will the 'span' tags be replaced? i thing 
that at least the 'message' span will not, since it uses Label, which replaces 
the body, not the tag.

how can i do this?

--
===================================
Ittay Dror Chief architect, openQRM TL, R&D, Qlusters Inc.
[EMAIL PROTECTED]
+972-3-6081994 Fax: +972-3-6081841

http://www.openQRM.org
- Keeps your Data-Center Up and Running


-------------------------------------------------------
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
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to