Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
33 righe
1.2 KiB
33 righe
1.2 KiB
<%@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> |