maia/.svn/pristine/d0/d01916610930010f7887d1996aa...

19 lines
1.2 KiB
Plaintext
Executable File

<ui:component xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
xmlns:comp="http://java.sun.com/jsf/composite" >
<comp:interface shortDescription="Componente para subir documentos a Alfresco">
<comp:attribute name="value" shortDescription="Etiqueta a mostrar en el boton de descarga" />
<comp:attribute name="idPopup" shortDescription="Identificador del componente popup de bpm" />
<comp:attribute name="disabled" shortDescription="Deshabilita componente popup de bpm" />
<comp:attribute name="componentShow" shortDescription="Dialogo a mostrarse" default="if(args.validationFailed){return false;} PF('popupBpm').show()"/>
</comp:interface>
<comp:implementation>
<div id="#{cc.clientId}">
<p:commandButton value="#{cc.attrs.value}" icon="ui-icon-circle-check" process="@this" oncomplete="#{cc.attrs.componentShow}" update=":#{cc.attrs.idPopup}:formBpm:pEdit" disabled="#{cc.attrs.disabled}" />
</div>
</comp:implementation>
</ui:component>