Steps to reproduce:
TypeScriptimport { ActionId, ExportFormatID } from 'devexpress-reporting/dx-webdocumentviewer'
OnCustomizeMenuActions(event: any){
var actionExportTo = event.args.GetById(ActionId.ExportTo);
console.log(actionExportTo);
actionExportTo.visible = false;
}
Expected results:
The export item is hidden.
Current results:
The export item remains visible.
Additional information:
The same callback / event works in ASP.NET apps.