-
All replies
-
Helpful answers
-
Dec 7, 2011 7:17 AM in response to xiaoftelby Ted Petrosky,can you show your code? both the html and the WOD .
Ted
-
Dec 7, 2011 4:56 PM in response to Ted Petroskyby xiaoftel,Hi Ted,
For the main component:
In the html:
<wo:AjaxUpdateContainer id = "editform">
<webobject name = "content" />
</wo:AjaxUpdateContainer>
<webobject name = "TagHpyerLink"> </webobject>
In the wod:
TagHpyerLink : AjaxUpdateLink {
string = "change this";
action = change;
updateContainerID = "editform";
}
content : WOIFrame {
id = "iframe";
pageName = "Page";
height = "400px";
width = "1170px";
the Page component:
html:
<div><webobject name = "pagestring"></webobject></div>
wod:
pagestring : WOString {
value = html;
escapeHTML = "false";
}
I want to change the value of pagestring by AjaxUpdateLink change action but do not know how to do pass that via Iframe
Thanks