2012-06-30 07:26:21 +02:00
|
|
|
<%@page pageEncoding="UTF-8" %>
|
|
|
|
<%@include file="/jsp/init.jsp" %>
|
|
|
|
|
2012-06-16 19:32:26 +02:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
|
|
|
|
<div>
|
2012-07-13 06:08:12 +02:00
|
|
|
<iframe src='${url}' style="border: 0;width: 100%;height:100%;min-height:400px;overflow-y: auto;"
|
|
|
|
id="dialogContentIframe"></iframe>
|
2012-06-16 19:32:26 +02:00
|
|
|
<div style="float: right;margin-right: 25px">
|
2012-07-01 22:56:31 +02:00
|
|
|
<input type="button" class="btn-primary" value="<spring:message code="ACCEPT"/>" id="submitBtn"/>
|
|
|
|
<input type="button" class="btn-secondary" value="<spring:message code="CANCEL"/>" id="cancelBtn"/>
|
2012-06-16 19:32:26 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
2012-07-13 06:08:12 +02:00
|
|
|
$('submitBtn').addEvent('click', function () {
|
2012-06-16 19:32:26 +02:00
|
|
|
var iframeWindow = $('dialogContentIframe').contentWindow;
|
2012-08-28 13:41:49 +02:00
|
|
|
if (iframeWindow && (typeof iframeWindow.submitDialogForm == 'function')) {
|
2012-08-28 02:56:39 +02:00
|
|
|
var delay = iframeWindow.submitDialogForm();
|
|
|
|
if (MooDialog.Request.active) {
|
|
|
|
if (!delay) {
|
|
|
|
MooDialog.Request.active.close();
|
|
|
|
} else {
|
|
|
|
MooDialog.Request.active.close.delay(3000, MooDialog.Request.active);
|
|
|
|
}
|
2012-06-22 06:34:33 +02:00
|
|
|
}
|
2012-06-16 19:32:26 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-07-13 06:08:12 +02:00
|
|
|
$('cancelBtn').addEvent('click', function () {
|
2012-06-16 19:32:26 +02:00
|
|
|
if (MooDialog.Request.active) {
|
|
|
|
MooDialog.Request.active.close();
|
|
|
|
}
|
|
|
|
});
|
2012-05-27 23:15:46 +02:00
|
|
|
</script>
|