Hi All,I have a DCT item textbox. and a callout associated with it and it is calling one html file using cgi wrapper. in html file, i have a text box and "insert" link. when user clicks on "insert" the value entered in the textbox should appear in my DCT textbox.Any one have any idea?
//--- FormAPI Fragmentfunction myCallBack(item_value) { var cbItem = IWDatacapture.getItem(itemXPath); if (cbItem) { cbItem.setValue(item_value); }}//--- CGI Fragmentvar api = opener.top.getScriptFrame();if (api) { api.myCallBack("Boo, Foo");}else { alert("Call Back Failed! Have you closed the DCR?");}