10.07.2023, 16:11
Hi,
Thanks to Forum, we made some actions when we open a specific page with the javascript code below. I need same action also when a specific mosaic page is opened by the customer. Can i do that ?
Regards,
$(function(){
if (typeof grp == 'undefined') { return;
}
$('body').on('showplan', function(event, id) { if (id == 120) {
grp.write('Sayfa 1 Status', true); }
else if (id == 123) { grp.write('Sayfa 2 Status', true);
}
}).trigger('showplan', [ currentPlanId ]); })
Thanks to Forum, we made some actions when we open a specific page with the javascript code below. I need same action also when a specific mosaic page is opened by the customer. Can i do that ?
Regards,
$(function(){
if (typeof grp == 'undefined') { return;
}
$('body').on('showplan', function(event, id) { if (id == 120) {
grp.write('Sayfa 1 Status', true); }
else if (id == 123) { grp.write('Sayfa 2 Status', true);
}
}).trigger('showplan', [ currentPlanId ]); })