Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.
Document Link Elements is not responding on add click.
Error console:
Timestamp: 17/05/2012 10:35:52
Error: linkRef2Id is not defined
Source File: http://192.168.200.33/projectorria/view/js/projectorDialog.js
Line: 735
Regards,
Evgueni
Sorry - found silution in already raised problems:
Fixing : replace in /view/js/projectDialog.js, line 735
function selectLinkItem() {
var nbSelected=0;
list=dojo.byId(linkRef2Id);
if (dojo.byId("linkRef2Type").value=="Document") {
with
function selectLinkItem() {
var nbSelected=0;
list=dojo.byId('linkRef2Id');
if (dojo.byId("linkRef2Type").value=="Document") {
Regards,
Evgueni