-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathccPopupOverlay
34 lines (27 loc) · 893 Bytes
/
ccPopupOverlay
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
<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core">
<xp:panel styleClass="#{javascript:compositeData.styleClass;}"
style="margin-top:100px;display:none">
<xp:panel style="padding:50px" styleClass="well popupContainer">
<i class="fa fa-refresh fa-spin fa-2x"
style="margin-right:10px">
</i>
<xp:text escape="true" id="computedField1"
style="font-weight:bold" styleClass="popupHtml">
<xp:this.value><![CDATA[#{javascript:"Please wait..."}]]></xp:this.value>
</xp:text>
</xp:panel>
</xp:panel>
<xp:scriptBlock>
<xp:this.value><![CDATA[var styleClass = ".#{compositeData.styleClass}";
$(document).ready(function() {
// Initialize the plugin
$(styleClass).popup({
vertical:'top',
color:'#666',
escape:false,
blur:false
});
});]]></xp:this.value>
</xp:scriptBlock>
</xp:view>