Skip to content

Commit 149e7b5

Browse files
Update custom items to work with Dashboard Component for Blazor
1 parent 89aa188 commit 149e7b5

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

CS/AspNetCoreCustomItem/wwwroot/js/FunnelD3.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
let FunnelD3CustomItem = (function () {
1+
window.FunnelD3CustomItem = (function () {
22
const Dashboard = DevExpress.Dashboard;
33
const Designer = DevExpress.Dashboard.Designer;
44
const Model = DevExpress.Dashboard.Model;

CS/AspNetCoreCustomItem/wwwroot/js/GanttItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
let GanttCustomItem = (function () {
1+
window.GanttCustomItem = (function () {
22
const Dashboard = DevExpress.Dashboard;
33

44
const GANTT_EXTENSION_NAME = 'GanttItem';

CS/AspNetCoreCustomItem/wwwroot/js/HierarchicalTreeViewItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
let TreeViewCustomItem = (function () {
1+
window.TreeViewCustomItem = (function () {
22
const Dashboard = DevExpress.Dashboard;
33
const dxTreeView = DevExpress.ui.dxTreeView;
44

CS/AspNetCoreCustomItem/wwwroot/js/OnlineMapItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
let OnlineMapCustomItem = (function () {
1+
window.OnlineMapCustomItem = (function () {
22
const Dashboard = DevExpress.Dashboard;
33
const Model = DevExpress.Dashboard.Model;
44
const Designer = DevExpress.Dashboard.Designer;

CS/AspNetCoreCustomItem/wwwroot/js/ParameterItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
let ParameterCustomItem = (function () {
1+
window.ParameterCustomItem = (function () {
22
const Model = DevExpress.Dashboard.Model;
33
const Designer = DevExpress.Dashboard.Designer;
44

CS/AspNetCoreCustomItem/wwwroot/js/PolarChartItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
let PolarChartCustomItem = (function () {
1+
window.PolarChartCustomItem = (function () {
22
const Model = DevExpress.Dashboard.Model;
33
const CustomItemViewer = DevExpress.Dashboard.CustomItemViewer;
44
const dxPolarChart = DevExpress.viz.dxPolarChart;

CS/AspNetCoreCustomItem/wwwroot/js/SimpleTableItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
let SimpleTableCustomItem = (function () {
1+
window.SimpleTableCustomItem = (function () {
22
const CustomItem = DevExpress.Dashboard.Model.CustomItem;
33
const FormItemTemplates = DevExpress.Dashboard.Designer.FormItemTemplates;
44

CS/AspNetCoreCustomItem/wwwroot/js/WebPageItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
let WebPageCustomItem = (function () {
1+
window.WebPageCustomItem = (function () {
22

33
const WEBPAGE_EXTENSION_NAME = 'WebPage';
44

0 commit comments

Comments
 (0)