Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Hi. I've created the mvc component (table, that display a list of the WTDocuments). This component is placed inside the navigator page. The first field is the number and this field is the link to the info page.
final ColumnConfig docNumber;
{
docNumber = factory.newColumnConfig("number", true);
docNumber.setInfoPageLink(true);
}
The correct url to the info page should be: http://org.myorg.ru/Windchill/app/#ptc1/tcomp/infoPage?oid=VR%3Awt.doc.WTDocument%3A401274&u8=1
but windchill generate: http://org.myorg.ru/app/#ptc1/tcomp/infoPage?oid=VR%3Awt.doc.WTDocument%3A401274&u8=1
What is wrong?
Anton,
Does the URL work if you open in a new tab or something? Or URL doesn't work at all?
Hi, Ben. URL doesn't work at all, becouse URL doesn't contains /Windchill/ word.
I've solved it by redirecting the urls in Apache:
RedirectMatch ^/app(.*)$ /Windchill/app$1
But I believe that it's not the best solution ![]()
