Re: Using AjaxLink onClick method to retrieve and alter components

2009-02-23 Thread Jeremy Thomerson
If you're using the AjaxLink - it is doing a round trip to the server. The problem is, the round trip does not include the form values - because it was a link - not a form submission. So, you have two options: 1 - don't use an ajax link - just use a webmarkupcontainer as your a tag and add the

Re: Using AjaxLink onClick method to retrieve and alter components

2009-02-23 Thread mallet
Thanks, Jeremy... very helpful. I didn't quite understand how the AjaxSubmitLink worked, but on your suggestion I refactored my code and found it to be exactly what I was looking for. Jeremy Thomerson-5 wrote: If you're using the AjaxLink - it is doing a round trip to the server. The