You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.2 KiB
Plaintext

<%@include file="init.jsp"%>
<portlet:renderURL var="ssdSimpleProgressBar"
windowState="<%=LiferayWindowState.EXCLUSIVE.toString()%>">
<portlet:param name="mvcPath"
value="/html/systemservicedefinition/simpleProgressBar.jsp" />
</portlet:renderURL>
<script>
function progressDialog(){
AUI().use('aui-base',
'aui-io-plugin-deprecated',
'liferay-util-window',
function(A) {
var popUpWindow=Liferay.Util.Window.getWindow(
{
dialog: {
centered: true,
constrain2view: true,
cssClass: 'progressDialog',
modal: true,
resizable: false,
width: 320,
height: 100,
destroyOnClose: true,
destroyOnHide: true,
toolbars: {
}
}
}
).plug(
A.Plugin.IO,
{
autoLoad: false
}
).render();
popUpWindow.show();
popUpWindow.titleNode.html("Processing...");
popUpWindow.io.set('uri','<%=ssdSimpleProgressBar%>');
popUpWindow.io.start();
});
}
</script>
<%--
footer: [
{
label: '&lt;%= UnicodeLanguageUtil.get(pageContext, "cancel") %&gt;',
on: {
click: function() {
messagingDialog.hide();
}
}
}
]
--%>