Hi patrick,
I am using same code in my application and working fine there is no issues .
var path = "";
var sUnid = items[0].unid;
if(dojo.isMozilla || dojo.isWebKit)
{
path=path+"xspaction.xsp?documentId="+sUnid+"&action=editDocument";
}
else
{
path="xspaction.xsp?documentId="+sUnid+"&action=editDocument";
}
document.location.href = path;
But i need some help at your side, actully in my calendar data are coming from two forms e.g. x and y when i click on data then open x form correctly.
But i clicked on y data it is not opening because path is not getting .How to open the other form data in same calendar and same code.
Please modify my code to open the multiple xpage.xsp page in single calendar
var path = "";
var sUnid = items[0].unid;
if(dojo.isMozilla || dojo.isWebKit)
{
path=path+"xspaction.xsp?documentId="+sUnid+"&action=editDocument";
}
else
{
path="xspaction.xsp?documentId="+sUnid+"&action=editDocument";
}
document.location.href = path;
Thanks & Regards
Ajeet Kr Gupt