marcoalderighi
2 anni fa
2 ha cambiato i file con 34 aggiunte e 0 eliminazioni
@ -0,0 +1,33 @@
|
||||
<%@page import="it.tref.liferay.portos.bo.model.IntPratica"%> |
||||
<%@page import="com.liferay.portal.kernel.util.WebKeys"%> |
||||
<%@page import="com.liferay.portal.kernel.dao.search.ResultRow"%> |
||||
<%@ include file="/html/init.jsp"%> |
||||
|
||||
<% |
||||
ResultRow row = (ResultRow) request.getAttribute(WebKeys.SEARCH_CONTAINER_RESULT_ROW); |
||||
IntPratica intPratica = (IntPratica) row.getObject(); |
||||
long intPraticaId = intPratica.getIntPraticaId(); |
||||
%> |
||||
|
||||
<liferay-portlet:actionURL |
||||
name="fixUO" |
||||
var="fixUOURL" > |
||||
<liferay-portlet:param name="intPraticaId" value="<%= String.valueOf(intPraticaId) %>"/> |
||||
<liferay-portlet:param name="mvcPath" value="/html/view.jsp"/> |
||||
</liferay-portlet:actionURL> |
||||
|
||||
<% |
||||
String btnName = "fixUOBtn" + intPraticaId; |
||||
String formName = "fixUO" + intPraticaId; |
||||
String functionfixUOsc = "javascript:"+renderResponse.getNamespace()+"openConfirmationDialog('"+renderResponse.getNamespace() + formName + "','Sei sicuro di voler cambiare l unita operativa di questa pratica?')"; |
||||
%> |
||||
<aui:form action="<%= fixUOURL %>" method="post" name="<%= formName %>"> |
||||
<aui:button |
||||
type="button" |
||||
cssClass="btn-primary" |
||||
name="<%= btnName %>" |
||||
onClick="<%= functionfixUOsc %>" |
||||
value="Fixa Unita Operativa" |
||||
> |
||||
</aui:button> |
||||
</aui:form> |
Caricamento…
Reference in new issue