forked from microsoft/PowerBI-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstep_embed.js
More file actions
98 lines (73 loc) · 1.82 KB
/
step_embed.js
File metadata and controls
98 lines (73 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// ---- Report Operations ----------------------------------------------------
function Report_GetId() {
SetCode(_Report_GetId);
}
function Report_UpdateSettings() {
SetCode(_Report_UpdateSettings);
}
function Report_GetPages() {
SetCode(_Report_GetPages);
}
function Report_SetPage() {
SetCode(_Report_SetPage);
}
function Report_GetFilters() {
SetCode(_Report_GetFilters);
}
function Report_SetFilters() {
SetCode(_Report_SetFilters);
}
function Report_RemoveFilters() {
SetCode(_Report_RemoveFilters);
}
function Report_PrintCurrentReport() {
SetCode(_Report_PrintCurrentReport);
}
function Report_Reload() {
SetCode(_Report_Reload);
}
function Report_Refresh() {
SetCode(_Report_Refresh);
}
function Report_FullScreen() {
SetCode(_Report_FullScreen);
}
function Report_ExitFullScreen() {
SetCode(_Report_ExitFullScreen);
}
// ---- Page Operations ----------------------------------------------------
function Page_SetActive() {
SetCode(_Page_SetActive);
}
function Page_GetFilters() {
SetCode(_Page_GetFilters);
}
function Page_SetFilters() {
SetCode(_Page_SetFilters);
}
function Page_RemoveFilters() {
SetCode(_Page_RemoveFilters);
}
// ---- Event Listener ----------------------------------------------------
function Events_PageChanged() {
SetCode(_Events_PageChanged);
}
function Events_DataSelected() {
SetCode(_Events_DataSelected);
}
function Events_SaveAsTriggered() {
SetCode(_Events_SaveAsTriggered);
}
// ---- Edit and Save Operations ----------------------------------------------------
function Report_switchModeEdit() {
SetCode(_Report_switchModeEdit);
}
function Report_switchModeView() {
SetCode(_Report_switchModeView);
}
function Report_save() {
SetCode(_Report_save);
}
function Report_saveAs() {
SetCode(_Report_saveAs);
}