Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! 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