Making some investigation I found that the problem is on call to _javascript_ function "wicketSerialize(this)" on onchange event attached to the radio <span /> .

The problem arise because "this" refers to <span /> element but wicketSerialize don't know how to handle the inner radio input fields.


// returns url/post-body fragment representing element (e)
function wicketSerialize(e) {
    var tag = e.tagName.toLowerCase();
    if (tag == "select") {
        return wicketSerializeSelect(e);
    } else {
        if (tag == "input" || tag == "textarea") {
            return wicketSerializeInput(e);
        }
    }
    return "";
}


-- Paolo


On 6/30/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote:
It is a missing feature rather than a bug IMO, but I already
encountered this and filed a bug report.

http://sourceforge.net/tracker/index.php?func=detail&aid=1501513&group_id=119783&atid=684975


Martijn

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