"Richard.Johnstone" wrote:
> 
> This should be so easy but I can't get it to work.
> I have tried <obj>.toString but it doesn't work
> How do you get the value of the item.
> ie HTML    xxx.value

        xxx.getAttribute("value");

see Input.setValue also :
    public Input setValue(double value)
    {
        addAttribute("value",Double.toString(value));
        return this;
    }

mino


--
------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://java.apache.org/main/mail.html>
Problems?:           [EMAIL PROTECTED]

Reply via email to