-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIndex.vbhtml
36 lines (33 loc) · 1.06 KB
/
Index.vbhtml
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
@Imports System.Web.UI.WebControls
<!DOCTYPE html>
<html>
<head>
@Html.DevExpress().GetStyleSheets(
New StyleSheet With {.ExtensionSuite = ExtensionSuite.NavigationAndLayout},
New StyleSheet With {.ExtensionSuite = ExtensionSuite.Editors},
New StyleSheet With {.ExtensionSuite = ExtensionSuite.Dashboard}
)
@Html.DevExpress().GetScripts(
New Script With {.ExtensionSuite = ExtensionSuite.NavigationAndLayout},
New Script With {.ExtensionSuite = ExtensionSuite.Editors},
New Script With {.ExtensionSuite = ExtensionSuite.Dashboard}
)
<style type="text/css">
html, body, form {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
</style>
</head>
<body>
@Html.DevExpress().Dashboard(
Sub(settings)
settings.ControllerName = "CustomDashboard"
settings.Name = "Dashboard"
settings.Width = Unit.Percentage(100)
settings.Height = Unit.Percentage(100)
End Sub).GetHtml()
</body>
</html>