I'm trying to pass IDfSysObject as parameter in window.open() but I guess the IDfSysObject is getting converted to String and while retrieving, it is not letting me convert it back to IDfSysObject.
Here is my javascript code
function myFunction(objid, objname)
{
window.open("view.jsp?uid="+objid+"&name="+objname,"","heightP0 ,widthP0");
}
here is how I'm trying to fetch it
Object obj = (Object)request.getParameter("uid");
sysObj = (IDfSysObject)obj;
I was hoping if there is anyway to send custom object as parameter? or if there is any way at all to pass this IDfSysObject to another jsp.
Thanks in advance.