Question

I have some simple code

<ice:selectBooleanCheckbox value="#{data.check}" style="border:0;"  valueChangeListener="#{myBean.actionCheckItem}" 
    partialSubmit="true" >
    <f:attribute name="dataIdx" value="#{data.rowIdx}"/>
    <ace:ajax execute="@this" render="@this" event="valueChange" onComplete="alert('dont');" onStart="alert('start');" />
</ice:selectBooleanCheckbox>

Ajax work fine, but event onStart and onComplete not working, i'm missing something ?

Was it helpful?

Solution

h:selectBooleanCheckbox will working with ace/f:ajax, ice only have partialSubmit="true"

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top