Hello,
we were using Smart UI modules to provide Smart UI action (function menu) buttons to call WebReport contents in Smart UI dialogs.
All was working good since 16.2.x versions, but now after the upgrade to 24.2 receiving this error.
Here is the sample code of what was working previously.
<script>
csui.onReady3({
connection: {
url: "[LL_REPTAG_URLPREFIXFULL /]/api/v1",
supportPath: "/[LL_REPTAG_SUPPORTDIR /]",
session: { ticket: [LL_REPTAG_OTCSTICKET QUOTE /] }
}
},[
'csui/controls/dialog/dialog.view',
'csui/utils/contexts/page/page.context',
'webreports/widgets/tilereport/tilereport.view',
],function(DialogView, PageContext, TileReportView){
var context = new PageContext();
var tileReportView = new TileReportView({
context,
data:{
id: 257359,
scroll: true,
header: false,
}
});
var dialog = new DialogView({
largeSize: true,
view: tileReportView,
title: 'test'
});
dialog.show();
context.fetch();
});
</script>
If placed in Webreport and called as a Tile from Perspective, it was working before the upgrade and loaded whatever was in other WebReport (257359)
What must be changed in code to make it work again?