[font=Tahoma]Greetings!
[/font]
[font=Tahoma]We are facing an issue with the TeamSite Tagger UI. We are using the following URL to invoke the tagger UI:
[/font]
[font=Tahoma]http://server/iw/webdesk/tag?vpath=path[/font][font=Tahoma].
[/font]
[font=Tahoma]This works like a charm on the professional interface. But on the standard interface, we just see a blank screen. We are using TeamSite 6.7.1 on Windows 2000 OS.
[/font]
[font=Tahoma]We are using FormAPI to invoke this URL from a DCT on the “onSaveDone” event.
[/font]
function init()
{
IWEventRegistry.addFormHandler("onSaveDone", onSaveDone);
}
function onSaveDone()
{
var dcrname = IWDCRInfo.getDCRName();
var dcrType = _iwdcWin.gTDT;
var dcrpath = parent.gWorkarea + "/templatedata/" + dcrType + "/data/" + dcrname;
tagpath = '/iw/webdesk/tag?vpath=' + dcrpath;
newWindow = window.open(tagpath,"","width=580,height=550,status=no,toolbar=no,location=no,resizable=yes,scrollbars=yes,left=75,top=50");
return false;
}
init();
[font=Tahoma]Could anybody please let me know what the issue would be? This works fine with 6.5.2 on both the interfaces. We are this URL because this is the only URL that gives a "Save", "Save and Close" and "cancel" button at the bottom. The other URL which is "iw-cc/tag" does not give me these buttons. Instead it gives me the "next" button at the bottom which I do not require. I hope I am being clear in my explainations. Please help. Thanks!
[/font]
[font=Tahoma]
[/font]