Re: append a converter or coversion function

2008-03-10 Thread Johan Compagner
A converter is only called when type is set for converting from string to object. Maybe we should document this a bit better. The type is tried to be resolved for you, but if it is a string then it is ignored so that normal convert() processing happens. This is a bit weird but dont know how we ca

Re: Simple question about alert string

2008-03-10 Thread Martijn Dashorst
"onclick", "return confirm('Are you sure to delete " + selectedName + "?');")); On 3/10/08, tsuresh <[EMAIL PROTECTED]> wrote: > > Hello, > I have a delete link in a list of names. If I click on the delete link of > name then the message should be are you sure to delete selectedName? > > St

Simple question about alert string

2008-03-10 Thread tsuresh
Hello, I have a delete link in a list of names. If I click on the delete link of name then the message should be are you sure to delete selectedName? String selectedName = "user1"; deleteLink.add(new SimpleAttributeModifier("onclick", "return confirm('Are you sure to delete?');")); I am not a

<    1   2