-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
3613 lines (3374 loc) · 152 KB
/
index.html
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns:pho="http:/www.pentaho.com" class="ext-strict dj_gecko dj_ff64 dj_contentbox"><head><style>.GK40RFKDG{cursor:move;user-select:none;-khtml-user-select:none;-moz-user-select:none;}.GK40RFKDB{zoom:1;}.GK40RFKDC{zoom:normal;}.GK40RFKDI{border:1px dashed #1e90ff;margin:0 !important;zoom:1;z-index:100;}.GK40RFKDF{color:#1e90ff;display:inline;text-align:center;vertical-align:middle;}.GK40RFKDJ{background-color:#7af;}.dragdrop-selected,.GK40RFKDC,.GK40RFKDJ{filter:alpha(opacity \= 30);opacity:0.3;}.GK40RFKDH{z-index:200;margin:0 !important;border:none !important;}</style><style>.GK40RFKDG{cursor:move;user-select:none;-khtml-user-select:none;-moz-user-select:none;}.GK40RFKDB{zoom:1;}.GK40RFKDC{zoom:normal;}.GK40RFKDI{border:1px dashed #1e90ff;margin:0 !important;zoom:1;z-index:100;}.GK40RFKDF{color:#1e90ff;display:inline;text-align:center;vertical-align:middle;}.GK40RFKDJ{background-color:#7af;}.dragdrop-selected,.GK40RFKDC,.GK40RFKDJ{filter:alpha(opacity \= 30);opacity:0.3;}.GK40RFKDH{z-index:200;margin:0 !important;border:none !important;}</style>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Emplyee Dashboard</title>
<meta name="viewport" content="initial-scale=1, minimum-scale = 1, maximum-scale = 1, user-scalable=no">
<!-- Theme Css -->
<link rel="stylesheet" type="text/css" href="Emplyee%20Dashboard_files/editor.css">
<link rel="stylesheet" type="text/css" href="Emplyee%20Dashboard_files/common.css">
<link rel="stylesheet" type="text/css" href="Emplyee%20Dashboard_files/pentaho.css">
<!-- /*!
* HITACHI VANTARA PROPRIETARY AND CONFIDENTIAL
*
* Copyright 2002 - 2017 Hitachi Vantara. All rights reserved.
*
* NOTICE: All information including source code contained herein is, and
* remains the sole property of Hitachi Vantara and its licensors. The intellectual
* and technical concepts contained herein are proprietary and confidential
* to, and are trade secrets of Hitachi Vantara and may be covered by U.S. and foreign
* patents, or patents in process, and are protected by trade secret and
* copyright laws. The receipt or possession of this source code and/or related
* information does not convey or imply any rights to reproduce, disclose or
* distribute its contents, or to manufacture, use, or sell anything that it
* may describe, in whole or in part. Any reproduction, modification, distribution,
* or public display of this information without the express written authorization
* from Hitachi Vantara is strictly prohibited and in violation of applicable laws and
* international treaties. Access to the source code contained herein is strictly
* prohibited to anyone except those individuals and entities who have executed
* confidentiality and non-disclosure agreements or other agreements with Hitachi Vantara,
* explicitly covering such access.
*/ -->
<!-- PDB-1604 - Load stylesheets via @imports for any thing IE9 or under due to a max limit of 31 link tags -->
<link rel="stylesheet" href="Emplyee%20Dashboard_files/IE_imports.css">
<!--[if lte IE 7]>
<link rel="stylesheet" href="../dashboards/resources/gwt/dashboarddesigner/FilterPanel_ie.css">
<![endif]-->
<!-- /*!
* HITACHI VANTARA PROPRIETARY AND CONFIDENTIAL
*
* Copyright 2002 - 2017 Hitachi Vantara. All rights reserved.
*
* NOTICE: All information including source code contained herein is, and
* remains the sole property of Hitachi Vantara and its licensors. The intellectual
* and technical concepts contained herein are proprietary and confidential
* to, and are trade secrets of Hitachi Vantara and may be covered by U.S. and foreign
* patents, or patents in process, and are protected by trade secret and
* copyright laws. The receipt or possession of this source code and/or related
* information does not convey or imply any rights to reproduce, disclose or
* distribute its contents, or to manufacture, use, or sell anything that it
* may describe, in whole or in part. Any reproduction, modification, distribution,
* or public display of this information without the express written authorization
* from Hitachi Vantara is strictly prohibited and in violation of applicable laws and
* international treaties. Access to the source code contained herein is strictly
* prohibited to anyone except those individuals and entities who have executed
* confidentiality and non-disclosure agreements or other agreements with Hitachi Vantara,
* explicitly covering such access.
*/ -->
<link rel="stylesheet" href="Emplyee%20Dashboard_files/jquery_002.css" type="text/css">
<link rel="stylesheet" href="Emplyee%20Dashboard_files/jquery.css" type="text/css">
<link rel="stylesheet" href="Emplyee%20Dashboard_files/jquery-impromptu.css" type="text/css">
<link rel="stylesheet" href="Emplyee%20Dashboard_files/cdf.css" type="text/css">
<link rel="stylesheet" href="Emplyee%20Dashboard_files/jquery-ui-1.css" type="text/css">
<link rel="stylesheet" type="text/css" href="Emplyee%20Dashboard_files/ext-all.css">
<link rel="stylesheet" type="text/css" href="Emplyee%20Dashboard_files/xtheme-gray.css">
<style type="text/css">
.reorderIcon{background-image: url("../dashboards/resources/images/dash_panel.png");}
.reorderIconSwap{background-image: url("../dashboards/resources/images/dash_panel_swap.png");}
.resizeHandle{
background-color:#5ED95E;
border: 1px solid #006600;
position: absolute;
z-index: 1600;
}
.dragHint{cursor: move}
.resizex{cursor: ew-resize}
.resizey{cursor: ns-resize}
</style>
<!--[if IE]>
<style type="text/css">
.resizex{cursor: e-resize}
.resizey{cursor: n-resize}
</style>
<![endif]-->
<script type="text/javascript" src="Emplyee%20Dashboard_files/themeResources.js"></script><script language="javascript" type="text/javascript">
//<![CDATA[
// functions to be call on load of dashboard. Used instead of window.onload listeners to ensure proper order of execution.
window.delayedFunctions = [];
//]]>
</script>
<script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/webcontext.js"></script><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/reporting-require-js-cfg.js"></script><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/pir-require-js-cfg.js"></script><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/geo-require-js-cfg.js"></script><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/cde-require-js-cfg.js"></script><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/cdf-require-js-cfg.js"></script><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/client-config-enabler-require-js-cfg.js"></script><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/require-js-cfg.js"></script><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/dashboards-require-js-cfg.js"></script><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/common-ui-require-js-cfg.js"></script><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/analyzer-require-js-cfg.js"></script><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/admin-plugin-require-js-cfg.js"></script><script type="text/javascript" src="Emplyee%20Dashboard_files/require.js"></script><script type="text/javascript" src="Emplyee%20Dashboard_files/require-cfg.js"></script><script type="text/javascript" src="Emplyee%20Dashboard_files/require-init.js"></script><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/themes.js"></script><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/jquery.js"></script><link rel="stylesheet" type="text/css" href="Emplyee%20Dashboard_files/datasourceEditorDialog.css"><link rel="stylesheet" type="text/css" href="Emplyee%20Dashboard_files/datasourceAdminDialog.css"><link rel="stylesheet" type="text/css" href="Emplyee%20Dashboard_files/angular-directives.css"><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/djConfig.js"></script><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/cache-service.js"></script><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/jquery.js"></script><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/themeUtils.js"></script><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/URLEncoder.js"></script><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/SessionExpiryCheckStartingPoint.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="dojo/_base/lang" src="Emplyee%20Dashboard_files/lang.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="dojo/_base/array" src="Emplyee%20Dashboard_files/array.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="dojo/io-query" src="Emplyee%20Dashboard_files/io-query.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="dojo/_base/kernel" src="Emplyee%20Dashboard_files/kernel.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="dojo/has" src="Emplyee%20Dashboard_files/has.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="dojo/_base/config" src="Emplyee%20Dashboard_files/config.js"></script><script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/AnalyzerDashboardWidget.js"></script>
<!-- /*!
* HITACHI VANTARA PROPRIETARY AND CONFIDENTIAL
*
* Copyright 2002 - 2017 Hitachi Vantara. All rights reserved.
*
* NOTICE: All information including source code contained herein is, and
* remains the sole property of Hitachi Vantara and its licensors. The intellectual
* and technical concepts contained herein are proprietary and confidential
* to, and are trade secrets of Hitachi Vantara and may be covered by U.S. and foreign
* patents, or patents in process, and are protected by trade secret and
* copyright laws. The receipt or possession of this source code and/or related
* information does not convey or imply any rights to reproduce, disclose or
* distribute its contents, or to manufacture, use, or sell anything that it
* may describe, in whole or in part. Any reproduction, modification, distribution,
* or public display of this information without the express written authorization
* from Hitachi Vantara is strictly prohibited and in violation of applicable laws and
* international treaties. Access to the source code contained herein is strictly
* prohibited to anyone except those individuals and entities who have executed
* confidentiality and non-disclosure agreements or other agreements with Hitachi Vantara,
* explicitly covering such access.
*/ -->
<script type="text/javascript">
pen.require(["local!Ext"], function(){
pen.require(["dashboards/oss-module", "dashboards/dashboard-module"], function(){
var __pho__cachedDashboardDesigner = window.dashboarddesigner;
// variable that keeps track of number of times we have attempted to call __pho__maybeGwtOnLoad__()
var __pho__maybeGwtOnLoadCount__ = 0;
function __pho__maybeGwtOnLoad__() {
__pho__maybeGwtOnLoadCount__++;
// pho is a global JavaScript variable defined during onModuleLoad; if it is defined, then we assume onModuleLoad ran;
// otherwise, we need to retry it
if (typeof(pho) == "undefined") {
var iframe = document.getElementById('dashboarddesigner');
// iframe might be null; if it is, just set the timeout and try again
if (iframe != null) {
var frameWnd = iframe.contentWindow;
// trigger gwtOnLoad (indirectly)
if (frameWnd.gwtOnLoad) {
__pho__cachedDashboardDesigner.onScriptLoad();
__pho__cachedDashboardDesigner.onInjectionDone();
}
}
// quit trying after a certain amount of time
if (__pho__maybeGwtOnLoadCount__ < 20) {
setTimeout('__pho__maybeGwtOnLoad__()', 200);
} else {
// Internet Explorer 6 is falling into this block even though the application does load.
// alert('Application could not be loaded.');
}
}
}
// check to see if we need to load the editor
if(/\/editor/.test(window.location.href)){
pen.require(["local", "dashboards/pentaho-dashboard-editor"], function(local){
local.define('dashboards');
__pho__maybeGwtOnLoad__();
PentahoDashboardController.onload();
});
} else {
__pho__maybeGwtOnLoad__();
PentahoDashboardController.onload();
}
});
});
</script>
<script type="text/javascript" src="Emplyee%20Dashboard_files/combined_compressed.js"></script>
<script language="javascript" type="text/javascript" src="Emplyee%20Dashboard_files/resourceBundle.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="local" src="Emplyee%20Dashboard_files/local.js"></script><script defer="defer">resourceBundle.onInjectionDone('resourceBundle')</script>
<script language="javascript" src="Emplyee%20Dashboard_files/dashboardviewer.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="cdf/components/BaseComponent" src="Emplyee%20Dashboard_files/BaseComponent.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="dashboards/oss-module" src="Emplyee%20Dashboard_files/oss-module.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="dashboards/dashboard-module" src="Emplyee%20Dashboard_files/dashboard-module.js"></script><script defer="defer">dashboardviewer.onInjectionDone('dashboardviewer')</script>
<script language="javascript">
//<![CDATA[
// maybeStartModule assigns null to dashboarddesigner; we need to save it under another name so we can call it later
pen.require(["dashboards/dashboard-module"], function(){
var __pho__cachedDashboardDesigner = window.dashboarddesigner;
// variable that keeps track of number of times we have attempted to call __pho__maybeGwtOnLoad__()
var __pho__maybeGwtOnLoadCount__ = 0;
function __pho__maybeGwtOnLoad__() {
__pho__maybeGwtOnLoadCount__++;
// pho is a global JavaScript variable defined during onModuleLoad; if it is defined, then we assume onModuleLoad ran;
// otherwise, we need to retry it
if (typeof(pho) == "undefined") {
var iframe = document.getElementById('dashboarddesigner');
// iframe might be null; if it is, just set the timeout and try again
if (iframe != null) {
var frameWnd = iframe.contentWindow;
// trigger gwtOnLoad (indirectly)
if (frameWnd.gwtOnLoad) {
__pho__cachedDashboardDesigner.onScriptLoad();
__pho__cachedDashboardDesigner.onInjectionDone();
}
}
// quit trying after a certain amount of time
if (__pho__maybeGwtOnLoadCount__ < 20) {
setTimeout('__pho__maybeGwtOnLoad__()', 200);
} else {
// Internet Explorer 6 is falling into this block even though the application does load.
// alert('Application could not be loaded.');
}
}
}
__pho__maybeGwtOnLoad__();
});
// called by pentaho mobile so we can hide our content and be resized properly
window.resizing = function(flag){
flag ? $("#wrapper").hide() : $("#wrapper").show();
}
//]]>
</script>
<script language="javascript" type="text/javascript">
//<![CDATA[
var dojoConfig = {
parseOnLoad : false,
isDebug : true,
disableFlashStorage : true
};
if (SESSION_LOCALE && SESSION_LOCALE != 'en_US') {
dojoConfig.locale = SESSION_LOCALE;
}
//]]>
</script>
<script language="javascript" src="Emplyee%20Dashboard_files/0-Sapphire.js"></script>
<!-- start theme stylesheet inserts -->
<link rel="stylesheet" type="text/css" title="Sapphire" href="Emplyee%20Dashboard_files/0-Sapphire.css">
<link rel="alternate stylesheet" type="text/css" title="Ruby" href="Emplyee%20Dashboard_files/0-Ruby.css">
<link rel="alternate stylesheet" type="text/css" title="Crystal" href="Emplyee%20Dashboard_files/0-Crystal.css">
<link rel="alternate stylesheet" type="text/css" title="Slate" href="Emplyee%20Dashboard_files/10-Slate.css">
<link rel="alternate stylesheet" type="text/css" title="Simple" href="Emplyee%20Dashboard_files/20-default.css">
<link rel="alternate stylesheet" type="text/css" title="Rounded" href="Emplyee%20Dashboard_files/30-rounded.css">
<link rel="alternate stylesheet" type="text/css" title="Cool Blue" href="Emplyee%20Dashboard_files/40-CoolBlue.css">
<link rel="alternate stylesheet" type="text/css" title="Gradient" href="Emplyee%20Dashboard_files/50-gradient.css">
<link rel="alternate stylesheet" type="text/css" title="Subtle" href="Emplyee%20Dashboard_files/60-subtle.css">
<!-- end theme stylesheet inserts -->
<script type="text/javascript">
var templatesJson = {
"Templates" : {
"type" : "array",
"properties" : {
}
,
"items" : [
{
"Template" : {
"type" : "object",
"properties" : {
"path" : "xul\/01-2-by-2.xul",
"thumbnail" : "..\/dashboards\/templates\/xul\/01-2-by-2.png",
"name" : "2 by 2"
}
}
}
,
{
"Template" : {
"type" : "object",
"properties" : {
"path" : "xul\/02-2-then-1.xul",
"thumbnail" : "..\/dashboards\/templates\/xul\/02-2-then-1.png",
"name" : "2 and 1"
}
}
}
,
{
"Template" : {
"type" : "object",
"properties" : {
"path" : "xul\/03-2-over-1.xul",
"thumbnail" : "..\/dashboards\/templates\/xul\/03-2-over-1.png",
"name" : "2 over 1"
}
}
}
,
{
"Template" : {
"type" : "object",
"properties" : {
"path" : "xul\/04-1-then-2.xul",
"thumbnail" : "..\/dashboards\/templates\/xul\/04-1-then-2.png",
"name" : "1 and 2"
}
}
}
,
{
"Template" : {
"type" : "object",
"properties" : {
"path" : "xul\/05-1-over-2.xul",
"thumbnail" : "..\/dashboards\/templates\/xul\/05-1-over-2.png",
"name" : "1 over 2"
}
}
}
,
{
"Template" : {
"type" : "object",
"properties" : {
"path" : "xul\/06-top-bot.xul",
"thumbnail" : "..\/dashboards\/templates\/xul\/06-top-bot.png",
"name" : "1 over 1"
}
}
}
,
{
"Template" : {
"type" : "object",
"properties" : {
"path" : "xul\/07-2-col.xul",
"thumbnail" : "..\/dashboards\/templates\/xul\/07-2-col.png",
"name" : "2 Column"
}
}
}
,
{
"Template" : {
"type" : "object",
"properties" : {
"path" : "xul\/08-3-col.xul",
"thumbnail" : "..\/dashboards\/templates\/xul\/08-3-col.png",
"name" : "3 Column"
}
}
}
,
{
"Template" : {
"type" : "object",
"properties" : {
"path" : "xul\/09-3-over-1.xul",
"thumbnail" : "..\/dashboards\/templates\/xul\/09-3-over-1.png",
"name" : "3 over 1"
}
}
}
,
{
"Template" : {
"type" : "object",
"properties" : {
"path" : "xul\/10-3-by-3.xul",
"thumbnail" : "..\/dashboards\/templates\/xul\/10-3-by-3.png",
"name" : "3 by 3"
}
}
}
,
{
"Template" : {
"type" : "object",
"properties" : {
"path" : "xul\/11-1-by-1.xul",
"thumbnail" : "..\/dashboards\/templates\/xul\/11-1-by-1.png",
"name" : "Single"
}
}
}
,
{
"Template" : {
"type" : "object",
"properties" : {
"path" : "xul\/12-3-over-3.xul",
"thumbnail" : "..\/dashboards\/templates\/xul\/12-3-over-3.png",
"name" : "3 over 3"
}
}
}
,
{
"Template" : {
"type" : "object",
"properties" : {
"path" : "xul\/13-3-over-2.xul",
"thumbnail" : "..\/dashboards\/templates\/xul\/13-3-over-2.png",
"name" : "3 over 2"
}
}
}
]
}
}
;
var themesJson = {
"Themes" : {
"type" : "array",
"properties" : {
}
,
"items" : [
{
"Theme" : {
"type" : "object",
"properties" : {
"path" : "0-Ruby",
"thumbnail" : "..\/dashboards\/service\/themes\/0-Ruby\/preview.png",
"name" : "Ruby"
}
}
}
,
{
"Theme" : {
"type" : "object",
"properties" : {
"path" : "0-Sapphire",
"thumbnail" : "..\/dashboards\/service\/themes\/0-Sapphire\/preview.png",
"name" : "Sapphire"
}
}
}
,
{
"Theme" : {
"type" : "object",
"properties" : {
"path" : "0-Crystal",
"thumbnail" : "..\/dashboards\/service\/themes\/0-Crystal\/preview.png",
"name" : "Crystal"
}
}
}
,
{
"Theme" : {
"type" : "object",
"properties" : {
"path" : "10-Slate",
"thumbnail" : "..\/dashboards\/service\/themes\/10-Slate\/preview.png",
"name" : "Slate"
}
}
}
,
{
"Theme" : {
"type" : "object",
"properties" : {
"path" : "20-default",
"thumbnail" : "..\/dashboards\/service\/themes\/20-default\/preview.png",
"name" : "Simple"
}
}
}
,
{
"Theme" : {
"type" : "object",
"properties" : {
"path" : "30-rounded",
"thumbnail" : "..\/dashboards\/service\/themes\/30-rounded\/preview.png",
"name" : "Rounded"
}
}
}
,
{
"Theme" : {
"type" : "object",
"properties" : {
"path" : "40-CoolBlue",
"thumbnail" : "..\/dashboards\/service\/themes\/40-CoolBlue\/preview.png",
"name" : "Cool Blue"
}
}
}
,
{
"Theme" : {
"type" : "object",
"properties" : {
"path" : "50-gradient",
"thumbnail" : "..\/dashboards\/service\/themes\/50-gradient\/preview.png",
"name" : "Gradient"
}
}
}
,
{
"Theme" : {
"type" : "object",
"properties" : {
"path" : "60-subtle",
"thumbnail" : "..\/dashboards\/service\/themes\/60-subtle\/preview.png",
"name" : "Subtle"
}
}
}
]
}
}
;
var templateFragment = "<!-- \/*!\n * HITACHI VANTARA PROPRIETARY AND CONFIDENTIAL\n *\n * Copyright 2002 - 2017 Hitachi Vantara. All rights reserved.\n *\n * NOTICE: All information including source code contained herein is, and\n * remains the sole property of Hitachi Vantara and its licensors. The intellectual\n * and technical concepts contained herein are proprietary and confidential\n * to, and are trade secrets of Hitachi Vantara and may be covered by U.S. and foreign\n * patents, or patents in process, and are protected by trade secret and\n * copyright laws. The receipt or possession of this source code and\/or related\n * information does not convey or imply any rights to reproduce, disclose or\n * distribute its contents, or to manufacture, use, or sell anything that it\n * may describe, in whole or in part. Any reproduction, modification, distribution,\n * or public display of this information without the express written authorization\n * from Hitachi Vantara is strictly prohibited and in violation of applicable laws and\n * international treaties. Access to the source code contained herein is strictly\n * prohibited to anyone except those individuals and entities who have executed\n * confidentiality and non-disclosure agreements or other agreements with Hitachi Vantara,\n * explicitly covering such access.\n *\/ -->\n\n<div id=\"template{id}-table\"\n class=\"pickBox\"\n onclick=\"pentahoDashboardEditor.selectTemplate(\'{id}\', \'template{id}-table\');\"\n ondblclick=\"pentahoDashboardEditor.templateChange()\"\n onmouseover=\"pentahoDashboardEditor.changePickTemplateState(\'template{id}-table\', \'{id}\', \'hover\')\"\n onmouseout=\"pentahoDashboardEditor.changePickTemplateState(\'template{id}-table\', \'{id}\', \'unhover\')\">\n <div class=\"pickBox_img\" style=\"background-image:url({thumbnail})\"> <\/div>\n <div class=\"pickBox_txt\">{name}<\/div>\n<\/div>";
var themeFragment = "<!-- \/*!\n * HITACHI VANTARA PROPRIETARY AND CONFIDENTIAL\n *\n * Copyright 2002 - 2017 Hitachi Vantara. All rights reserved.\n *\n * NOTICE: All information including source code contained herein is, and\n * remains the sole property of Hitachi Vantara and its licensors. The intellectual\n * and technical concepts contained herein are proprietary and confidential\n * to, and are trade secrets of Hitachi Vantara and may be covered by U.S. and foreign\n * patents, or patents in process, and are protected by trade secret and\n * copyright laws. The receipt or possession of this source code and\/or related\n * information does not convey or imply any rights to reproduce, disclose or\n * distribute its contents, or to manufacture, use, or sell anything that it\n * may describe, in whole or in part. Any reproduction, modification, distribution,\n * or public display of this information without the express written authorization\n * from Hitachi Vantara is strictly prohibited and in violation of applicable laws and\n * international treaties. Access to the source code contained herein is strictly\n * prohibited to anyone except those individuals and entities who have executed\n * confidentiality and non-disclosure agreements or other agreements with Hitachi Vantara,\n * explicitly covering such access.\n *\/ -->\n\n<div id=\"theme{id}-table\"\n class=\"pickBox\"\n onclick=\"pentahoDashboardEditor.selectTheme(\'{id}\', \'theme{id}-table\');\"\n ondblclick=\"pentahoDashboardEditor.themeChange()\"\n onmouseover=\"pentahoDashboardEditor.changePickThemeState(\'theme{id}-table\', \'{id}\', \'hover\')\"\n onmouseout=\"pentahoDashboardEditor.changePickThemeState(\'theme{id}-table\', \'{id}\', \'unhover\')\">\n <div class=\"pickBox_img\" style=\"background-image:url({thumbnail})\"> <\/div>\n <div class=\"pickBox_txt\">{name}<\/div>\n<\/div>";
</script><meta name="gwt:property" content="locale=en_us">
<link rel="stylesheet" href="Emplyee%20Dashboard_files/xul.css"><link rel="stylesheet" type="text/css" href="Emplyee%20Dashboard_files/globalRuby.css"><link rel="stylesheet" type="text/css" href="Emplyee%20Dashboard_files/bootstrap-namespaced.css"><link rel="stylesheet" type="text/css" href="Emplyee%20Dashboard_files/ddRuby.css"><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="dojo/sniff" src="Emplyee%20Dashboard_files/sniff_002.js"></script><style type="text/css">/*! jQuery-Impromptu - v5.2.4 - 2014-05-26
* http://trentrichardson.com/Impromptu
* Copyright (c) 2014 Trent Richardson; Licensed MIT */
.jqifade{
position: absolute;
background-color: #777777;
}
div.jqi{
width: 400px;
max-width:90%;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
position: absolute;
background-color: #ffffff;
font-size: 11px;
text-align: left;
border: solid 1px #eeeeee;
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
padding: 7px;
}
div.jqi .jqicontainer{
}
div.jqi .jqiclose{
position: absolute;
top: 4px; right: -2px;
width: 18px;
cursor: default;
color: #bbbbbb;
font-weight: bold;
}
div.jqi .jqistate{
background-color: #fff;
}
div.jqi .jqititle{
padding: 5px 10px;
font-size: 16px;
line-height: 20px;
border-bottom: solid 1px #eeeeee;
}
div.jqi .jqimessage{
padding: 10px;
line-height: 20px;
color: #444444;
}
div.jqi .jqibuttons{
text-align: right;
margin: 0 -7px -7px -7px;
border-top: solid 1px #e4e4e4;
background-color: #f4f4f4;
border-radius: 0 0 6px 6px;
-moz-border-radius: 0 0 6px 6px;
-webkit-border-radius: 0 0 6px 6px;
}
div.jqi .jqibuttons button{
margin: 0;
padding: 15px 20px;
background-color: transparent;
font-weight: normal;
border: none;
border-left: solid 1px #e4e4e4;
color: #777;
font-weight: bold;
font-size: 12px;
}
div.jqi .jqibuttons button.jqidefaultbutton{
color: #489afe;
}
div.jqi .jqibuttons button:hover,
div.jqi .jqibuttons button:focus{
color: #287ade;
outline: none;
}
.jqiwarning .jqi .jqibuttons{
background-color: #b95656;
}
/* sub states */
div.jqi .jqiparentstate::after{
background-color: #777;
opacity: 0.6;
filter: alpha(opacity=60);
content: '';
position: absolute;
top:0;left:0;bottom:0;right:0;
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
}
div.jqi .jqisubstate{
position: absolute;
top:0;
left: 20%;
width: 60%;
padding: 7px;
border: solid 1px #eeeeee;
border-top: none;
border-radius: 0 0 6px 6px;
-moz-border-radius: 0 0 6px 6px;
-webkit-border-radius: 0 0 6px 6px;
}
div.jqi .jqisubstate .jqibuttons button{
padding: 10px 18px;
}
/* arrows for tooltips/tours */
.jqi .jqiarrow{ position: absolute; height: 0; width:0; line-height: 0; font-size: 0; border: solid 10px transparent;}
.jqi .jqiarrowtl{ left: 10px; top: -20px; border-bottom-color: #ffffff; }
.jqi .jqiarrowtc{ left: 50%; top: -20px; border-bottom-color: #ffffff; margin-left: -10px; }
.jqi .jqiarrowtr{ right: 10px; top: -20px; border-bottom-color: #ffffff; }
.jqi .jqiarrowbl{ left: 10px; bottom: -20px; border-top-color: #ffffff; }
.jqi .jqiarrowbc{ left: 50%; bottom: -20px; border-top-color: #ffffff; margin-left: -10px; }
.jqi .jqiarrowbr{ right: 10px; bottom: -20px; border-top-color: #ffffff; }
.jqi .jqiarrowlt{ left: -20px; top: 10px; border-right-color: #ffffff; }
.jqi .jqiarrowlm{ left: -20px; top: 50%; border-right-color: #ffffff; margin-top: -10px; }
.jqi .jqiarrowlb{ left: -20px; bottom: 10px; border-right-color: #ffffff; }
.jqi .jqiarrowrt{ right: -20px; top: 10px; border-left-color: #ffffff; }
.jqi .jqiarrowrm{ right: -20px; top: 50%; border-left-color: #ffffff; margin-top: -10px; }
.jqi .jqiarrowrb{ right: -20px; bottom: 10px; border-left-color: #ffffff; }
/*!
* Copyright 2002 - 2017 Webdetails, a Hitachi Vantara company. All rights reserved.
*
* This software was developed by Webdetails and is provided under the terms
* of the Mozilla Public License, Version 2.0, or any later version. You may not use
* this file except in compliance with the license. If you need a copy of the license,
* please go to http://mozilla.org/MPL/2.0/. The Initial Developer is Webdetails.
*
* Software distributed under the Mozilla Public License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. Please refer to
* the license for the specific language governing your rights and limitations.
*/
.errorMessageTable .errorIcon {
background-image: url('cdf/js/lib/images/error.png');
height:16px;
width:16px;
display:inline-block;
}
/*! jQuery UI - v1.10.4 - 2014-06-19
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css, jquery.ui.theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Lucida%20Grande%2CLucida%20Sans%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=deedf7&bgTextureHeader=highlight_soft&bgImgOpacityHeader=100&borderColorHeader=aed0ea&fcHeader=222222&iconColorHeader=72a7cf&bgColorContent=f2f5f7&bgTextureContent=highlight_hard&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=362b36&iconColorContent=72a7cf&bgColorDefault=d7ebf9&bgTextureDefault=glass&bgImgOpacityDefault=80&borderColorDefault=aed0ea&fcDefault=2779aa&iconColorDefault=3d80b3&bgColorHover=e4f1fb&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=74b2e2&fcHover=0070a3&iconColorHover=2694e8&bgColorActive=3baae3&bgTextureActive=glass&bgImgOpacityActive=50&borderColorActive=2694e8&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=ffef8f&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=25&borderColorHighlight=f9dd34&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=cd0a0a&bgTextureError=flat&bgImgOpacityError=15&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffffff&bgColorOverlay=eeeeee&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=90&opacityOverlay=80&bgColorShadow=000000&bgTextureShadow=highlight_hard&bgImgOpacityShadow=70&opacityShadow=30&thicknessShadow=7px&offsetTopShadow=-7px&offsetLeftShadow=-7px&cornerRadiusShadow=8px
* Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
display: none;
}
.ui-helper-hidden-accessible {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.ui-helper-reset {
margin: 0;
padding: 0;
border: 0;
outline: 0;
line-height: 1.3;
text-decoration: none;
font-size: 100%;
list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
content: "";
display: table;
border-collapse: collapse;
}
.ui-helper-clearfix:after {
clear: both;
}
.ui-helper-clearfix {
min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
width: 100%;
height: 100%;
top: 0;
left: 0;
position: absolute;
opacity: 0;
filter:Alpha(Opacity=0);
}
.ui-front {
z-index: 100;
}
/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
cursor: default !important;
}
/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
display: block;
text-indent: -99999px;
overflow: hidden;
background-repeat: no-repeat;
}
/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.ui-resizable {
position: relative;
}
.ui-resizable-handle {
position: absolute;
font-size: 0.1px;
display: block;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
display: none;
}
.ui-resizable-n {
cursor: n-resize;
height: 7px;
width: 100%;
top: -5px;
left: 0;
}
.ui-resizable-s {
cursor: s-resize;
height: 7px;
width: 100%;
bottom: -5px;
left: 0;
}
.ui-resizable-e {
cursor: e-resize;
width: 7px;
right: -5px;
top: 0;
height: 100%;
}
.ui-resizable-w {
cursor: w-resize;
width: 7px;
left: -5px;
top: 0;
height: 100%;
}
.ui-resizable-se {
cursor: se-resize;
width: 12px;
height: 12px;
right: 1px;
bottom: 1px;
}
.ui-resizable-sw {
cursor: sw-resize;
width: 9px;
height: 9px;
left: -5px;
bottom: -5px;
}
.ui-resizable-nw {
cursor: nw-resize;
width: 9px;
height: 9px;
left: -5px;
top: -5px;
}
.ui-resizable-ne {
cursor: ne-resize;
width: 9px;
height: 9px;
right: -5px;
top: -5px;
}
.ui-selectable-helper {
position: absolute;
z-index: 100;
border: 1px dotted black;
}
.ui-accordion .ui-accordion-header {
display: block;
cursor: pointer;
position: relative;
margin-top: 2px;
padding: .5em .5em .5em .7em;
min-height: 0; /* support: IE7 */
}
.ui-accordion .ui-accordion-icons {
padding-left: 2.2em;
}
.ui-accordion .ui-accordion-noicons {
padding-left: .7em;
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
position: absolute;
left: .5em;
top: 50%;
margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
padding: 1em 2.2em;
border-top: 0;
overflow: auto;
}
.ui-autocomplete {
position: absolute;
top: 0;
left: 0;
cursor: default;
}
.ui-button {
display: inline-block;
position: relative;
padding: 0;
line-height: normal;
margin-right: .1em;
cursor: pointer;
vertical-align: middle;
text-align: center;
overflow: visible; /* removes extra width in IE */
}
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
text-decoration: none;
}
/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
width: 2.2em;
}
/* button elements seem to need a little more width */
button.ui-button-icon-only {
width: 2.4em;
}
.ui-button-icons-only {
width: 3.4em;
}
button.ui-button-icons-only {
width: 3.7em;
}
/* button text element */
.ui-button .ui-button-text {
display: block;
line-height: normal;
}
.ui-button-text-only .ui-button-text {
padding: .4em 1em;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
padding: .4em;
text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
padding: .4em 1em .4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
padding: .4em 2.1em .4em 1em;
}
.ui-button-text-icons .ui-button-text {
padding-left: 2.1em;
padding-right: 2.1em;
}
/* no icon support for input elements, provide padding by default */
input.ui-button {
padding: .4em 1em;
}
/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
position: absolute;
top: 50%;
margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
left: 50%;
margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
left: .5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
right: .5em;
}
/* button sets */
.ui-buttonset {
margin-right: 7px;
}
.ui-buttonset .ui-button {
margin-left: 0;
margin-right: -.3em;
}
/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
border: 0;
padding: 0;
}
.ui-datepicker {
width: 17em;
padding: .2em .2em 0;
display: none;
}
.ui-datepicker .ui-datepicker-header {
position: relative;
padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
position: absolute;
top: 2px;
width: 1.8em;
height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
left: 2px;
}
.ui-datepicker .ui-datepicker-next {
right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {