AjaxUpdateLink's action not getting called
AjaxUpdateLink's action not getting called
- Subject: AjaxUpdateLink's action not getting called
- From: "Ricardo J. Parada" <email@hidden>
- Date: Tue, 10 Mar 2009 12:48:34 -0400
Is there a reason why my action would not get called when I use the AjaxUpdateLink's in a configuration like this:
<wo:form> <wo:AjaxUpdateContainer id="Foo"> <wo:AjaxObserveField updateContainerID="Foo" elementName="span"> <wo:textfield value="$foo"/> <wo:AjaxUpdateLink action="$doSomething" string="Do It"/> </wo:AjaxObserveField> </wo:AjaxUpdateContainer> </wo:form>
This is a simplified version of what I have just to demonstrate what I'm talking about. In order for my AjaxUpdateLink's action to get called I have to move it outside the AjaxObserveField like this:
<wo:form> <wo:AjaxUpdateContainer id="Foo"> <wo:AjaxObserveField updateContainerID="Foo" elementName="span"> <wo:textfield value="$foo"/> </wo:AjaxObserveField> <wo:AjaxUpdateLink action="$doSomething" string="Do It"/> </wo:AjaxUpdateContainer> </wo:form> |
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden