Hi Experts,
There is a requirement to get the current web client URL to perform LaunchBrowser operation in client script.
Var link = “Current URL’?task.task_id=” +taskID;
var taskID = getControlValue('task','task_id');
if(taskID!='' && taskID!=null)
{
var link="Current URL?task.task_id="+taskID;
launchBrowser(link);
}
else
{
alert(getMessage('Error in Opening Tab','Information'));
}
Is there a way to achieve this using existing client script functions?
Thanks,
Hasara