[]
type AppAboutSettings = object;
applicationTitle: string;
Application title
// ESM usage
import { arWebDesigner } from './web-designer.js';
arWebDesigner.create('#ar-web-designer', {
rpx: { enabled: true },
appBar: { openButton: { visible: true } }
}).then((designer) => {
designer.app.about.applicationTitle = 'Title text';
});
// UMD usage
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
rpx: { enabled: true },
appBar: { openButton: { visible: true } }
}).then((designer) => {
designer.app.about.applicationTitle = 'Title text';
});
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
rpx: { enabled: true },
appBar: { openButton: { visible: true } }
}).then((designer: DesignerAPI) => {
designer.app.about.applicationTitle = 'Title text';
});
applicationTitleCompact: string;
A compact version of the application title
// ESM usage
import { arWebDesigner } from './web-designer.js';
arWebDesigner.create('#ar-web-designer', {
rpx: { enabled: true },
appBar: { openButton: { visible: true } }
}).then((designer) => {
designer.app.about.applicationTitleCompact = 'Example text';
});
// UMD usage
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
rpx: { enabled: true },
appBar: { openButton: { visible: true } }
}).then((designer) => {
designer.app.about.applicationTitleCompact = 'Example text';
});
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
rpx: { enabled: true },
appBar: { openButton: { visible: true } }
}).then((designer: DesignerAPI) => {
designer.app.about.applicationTitleCompact = 'Example text';
});
applicationVersion: string;
Application version
// ESM usage
import { arWebDesigner } from './web-designer.js';
arWebDesigner.create('#ar-web-designer', {
rpx: { enabled: true },
appBar: { openButton: { visible: true } }
}).then((designer) => {
designer.app.about.coreVersion = '1.2.3';
designer.app.about.applicationVersion = '3.4.5';
});
// UMD usage
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
rpx: { enabled: true },
appBar: { openButton: { visible: true } }
}).then((designer) => {
designer.app.about.coreVersion = '1.2.3';
designer.app.about.applicationVersion = '3.4.5';
});
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
rpx: { enabled: true },
appBar: { openButton: { visible: true } }
}).then((designer: DesignerAPI) => {
designer.app.about.coreVersion = '1.2.3';
designer.app.about.applicationVersion = '3.4.5';
});
coreVersion: string;
Designer Core version an application is based on
// ESM usage
import { arWebDesigner } from './web-designer.js';
arWebDesigner.create('#ar-web-designer', {
rpx: { enabled: true },
appBar: { openButton: { visible: true } }
}).then((designer) => {
designer.app.about.coreVersion = '1.2.3';
designer.app.about.applicationVersion = '3.4.5';
});
// UMD usage
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
rpx: { enabled: true },
appBar: { openButton: { visible: true } }
}).then((designer) => {
designer.app.about.coreVersion = '1.2.3';
designer.app.about.applicationVersion = '3.4.5';
});
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
rpx: { enabled: true },
appBar: { openButton: { visible: true } }
}).then((designer: DesignerAPI) => {
designer.app.about.coreVersion = '1.2.3';
designer.app.about.applicationVersion = '3.4.5';
});