-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathccModalClientSideConfirm
More file actions
52 lines (45 loc) · 1.38 KB
/
ccModalClientSideConfirm
File metadata and controls
52 lines (45 loc) · 1.38 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
<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core" xmlns:xc="http://www.ibm.com/xsp/custom">
<xp:panel styleClass="modalClientSideConfirm modal fade">
<xp:this.attrs>
<xp:attr name="role" value="dialog"></xp:attr>
<xp:attr name="panel-keyboard" value="false"></xp:attr>
<xp:attr name="data-backdrop" value="static"></xp:attr>
</xp:this.attrs>
<xp:div styleClass="modal-dialog" style="width:auto">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"
aria-hidden="true">
x
</button>
<h4>
<i class="fa fa-question-circle fa-lg right10"></i>
<span class="modalClientSideConfirmTitle"></span>
</h4>
</div>
<div class="modal-body" style="height:auto">
</div>
<div class="modal-footer">
<table role="presentation" style="width:100%">
<tbody>
<tr>
<td style="text-align:left"></td>
<td style="text-align:right">
<button class="btn1 btn btn-primary btn-sm btnYes" type="button"
data-dismiss="modal">
Yes
</button>
<button class="btn btn-sm btn-default btnNo" type="button"
data-dismiss="modal">
No
</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</xp:div>
</xp:panel>
</xp:view>