Hi,
How do I link a document to the documents tree in a site, when the document is not on the same computer of the site. I tried with the IP in the tree.js :
gLnk(0, "Database.doc",
"//145.9.106.130/data/SHARE/BTS/SW/RFDS/RFDS_vob/docs/SW/Design/DB.doc", "Common project data storage."
)
when gLnk in the second file is:
function gLnk(target, description, linkData, doc_descript)
{
fullLink = ""
if (target==0)
{
fullLink = "'"+linkData+"' target=\"basefrm\""
}
else
{
if (target==1)
fullLink = "' target=_blank"
else
fullLink = "' target=\"basefrm\""
}
linkItem = new Item(description, fullLink, doc_descript)
return linkItem
}
How do I link a document to the documents tree in a site, when the document is not on the same computer of the site. I tried with the IP in the tree.js :
gLnk(0, "Database.doc",
"//145.9.106.130/data/SHARE/BTS/SW/RFDS/RFDS_vob/docs/SW/Design/DB.doc", "Common project data storage."
when gLnk in the second file is:
function gLnk(target, description, linkData, doc_descript)
{
fullLink = ""
if (target==0)
{
fullLink = "'"+linkData+"' target=\"basefrm\""
}
else
{
if (target==1)
fullLink = "' target=_blank"
else
fullLink = "' target=\"basefrm\""
}
linkItem = new Item(description, fullLink, doc_descript)
return linkItem
}