20 lines
652 B
JavaScript
20 lines
652 B
JavaScript
window.DesignerCustomization = {
|
|
onCustomizeActions(s, e) {
|
|
var NewReportViaWizard = e.GetById(DevExpress.Reporting.Designer.Actions.ActionId.NewReportViaWizard);
|
|
if (NewReportViaWizard)
|
|
NewReportViaWizard.visible = false;
|
|
|
|
var ReportWizard = e.GetById(DevExpress.Reporting.Designer.Actions.ActionId.ReportWizard);
|
|
if (ReportWizard)
|
|
ReportWizard.visible = false;
|
|
}
|
|
|
|
}
|
|
|
|
window.ReportingDesignerCustomization = {
|
|
RemoveAppearanceSection: function (s, e) {
|
|
var group = e.dx.Reporting.Designer.Widgets.groups["Design"];
|
|
group.info.splice(0, group.info.length);
|
|
}
|
|
}
|