dashlet.smarty
1.14 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
{literal}
<script type="text/javascript">
function showTooltip()
{
document.getElementById("KTLiveDropBoxTooltip").style.display="block";
}
function hideTooltip()
{
document.getElementById("KTLiveDropBoxTooltip").style.display="none";
}
</script>
<style type="text/css">
#MyDropDocumentsDashlet
{
display: block;
}
#KTLiveDropBoxTooltip
{
display: none;
position: absolute;
height: 18px;
width: 328px;
bottom: -35px;
right: 0px;
padding: 5px;
border: 1px solid #CCCCCC;
background-color: #F5F6BE;
}
#MyDropDocumentsHeader
{
font-weight: bold;
margin-left: 25px;
}
#MyDropDocumentsBlock {
padding: 0 25px;
}
#MyDropDocumentsFooter
{
position: absolute;
bottom: 10px;
right: 35px;
width: 50%;
}
.drop_box{
width: 100%;
}
</style>
{/literal}
<div>
<div id="MyDropDocumentsHeader">
</div>
<div id="MyDropDocumentsBlock" name="MyDropDocumentsBlock">
Checking My Drop Documents
<br>
<br>
<br>
</div>
<div id="MyDropDocumentsFooter">
</div>
</div>
<script type="text/javascript">var MY_DROP_DOCUMENTS = "{$url}";</script>
<script type="text/javascript">
{literal}
Ext.onReady(function()
{
CheckFolderExists();
});
{/literal}
</script>