Hi, I have a menu configured with the MenuData property but whenever I change the option it opens the mashup in a new window but I need it to replace the current one, what configuration should I put in the service? At the moment I have this
result.AddRow({
linkDestination: 'MenuTest',
isDefault: true,
parentMenuId: 'topMenu',
imageURL: '',
linkTarget: '', // (Popup, Mashup, 'Replace')
description: '',
menuId: 'idOverview',
linkType: 'Mashup',
title: 'Over'
});
Solved! Go to Solution.
try with
linkTarget: 'Replace'
like the comment suggests. Or
linkTarget: 'Self'
'Self' is what a "normal" menu uses when defined as "Replace page"
try with
linkTarget: 'Replace'
like the comment suggests. Or
linkTarget: 'Self'
'Self' is what a "normal" menu uses when defined as "Replace page"
With "Replace" I had already tried it and it didn't work, but with "self" it worked as I needed. Thank you very much.