-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathreportPopUp.html
More file actions
146 lines (130 loc) · 5.2 KB
/
Copy pathreportPopUp.html
File metadata and controls
146 lines (130 loc) · 5.2 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<!--
* ========================================================================
* reportPopUp.html
*
* ========================================================================
* Copyright 2014
* Author: Gene Arnold, Mariano Luna, Gianluca Natali
*
* Unless you have purchased a commercial license agreement from Jaspersoft Inc., the following license terms apply:
*
* This program is free software: you can redistribute it and/or modify it under the terms of the
* GNU Affero General Public License as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
* License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
* ======================================================================== */
-->
<html lang="en">
<head>
<title>Hyperlink PopUp - JRS Embedded Demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/styles.css" rel="stylesheet" />
<link href="css/redmond/jquery-ui-1.10.4.custom.min.css" rel="stylesheet" />
<script src="js/jquery.min.js"></script>
<script src="js/jquery-ui-1.10.4.custom.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/config.js"></script>
<script src="js/visualizeHelper.js"></script>
<script src="js/pageSpecific.js"></script>
<script type="text/JavaScript">
var jsHelper = new ReportPopUpJS();
jsHelper.init(window);
</script>
<style type="text/css">
.mygrid-wrapper-div {
overflow: scroll;
height: 400px;
}
#accountList {
width: 550px;
height: 450px;
overflow: hidden;
}
._jrHyperLink {
cursor: pointer;
cursor: hand;
}
#progressbar {
height: 15px;
}
#progressbar .ui-progressbar-value {
background-color: #5C9CCC;
}
#progressbar .progress-label {
position: absolute;
left: 50%;
top: 2px;
font-weight: bold;
text-shadow: 1px 1px 0 #fff;
}
</style>
</head>
<body onLoad="$('#progressbar').progressbar({ value: false });">
<div class="navbar navbar-inverse navbar-static-top">
<div class="container" style="width:100%; ">
<a href="#" class="navbar-brand">Jaspersoft Portal</a>
<button class="navbar-toggle" data-toggle="collapse" data-target=".navHeaderCollapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="collapse navbar-collapse navHeaderCollapse">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="index.html">Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Extra Samples <b class="caret"></b><a/>
<ul class="dropdown-menu">
<li><a href="context-ic.html">Contextual Input Controls</a></li>
<li><a href="reportInteraction.html">External Report Interaction</a></li>
<li><a href="reportInteraction2.html">Report Interaction</a></li>
<li><a href="reportPopUp.html">Report Popup</a></li>
<li><a href="dashboard.html">Dashboard Example</a></li>
<li><a href="dashboardDesigner.html">Dashboard Designer</a></li>
</ul>
</li>
<li><a href="http://github.com/marianol/JasperEmbedSample">About</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
<span class="glyphicon glyphicon-tags"></span> Actual Store Sales
</h3>
<br>
<div class="input-group input-group-sm" style="width: 250px; height: 41px; float: left; padding-right: 20px">
<span class="input-group-addon">Sales >= </span>
<input id="filterStore" type="text" class="form-control" placeholder="" style="height: 41px; " onChange="jsHelper.filterStores();">
</div>
<div class="input-group input-group-sm" style="width: 492px;" >
<span class="input-group-addon">Profit Range: </span>
<input type="text" id="profit" class="form-control" disabled >
<div id="slider-range" style="width:400px; "></div>
</div>
</div>
<div class="panel-body">
<div id="accountList">
<div id="progressbar"></div>
</div>
</span>
</div>
</div>
</div>
<div id="dialogContainer">
</div>
</div>
</div>
</body>
</html>