-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.aspx
30 lines (26 loc) · 1.17 KB
/
Default.aspx
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
<%@ Page Language="VB" AutoEventWireup="true" CodeBehind="Default.aspx.vb"
Inherits="ASPxDashboard_SetParameterValues.Default" %>
<%@ Register Assembly="DevExpress.Dashboard.v24.2.Web.WebForms, Version=24.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a"
Namespace="DevExpress.DashboardWeb" TagPrefix="dx" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript" src="Scripts/ParameterValues.js"></script>
</head>
<body>
<form id="form1" runat="server">
<div id="setParameterValuesButton" style="float: left; margin: 2px 5px;"></div>
<div id="resetParameterValuesButton" style="float: left; margin: 2px 5px;"></div>
<div id="showParametersDialog" style="float: left; margin: 2px 5px;"></div>
<div style="position: absolute; left: 0; right: 0; top:55px; bottom:0;">
<dx:ASPxDashboard ID="ASPxDashboard1" runat="server"
WorkingMode="Viewer"
ClientInstanceName="webViewer"
ClientSideEvents-BeforeRender="onBeforeRender"
Width="100%" Height="100%">
</dx:ASPxDashboard>
</div>
</form>
</body>
</html>