Houston we have a problem!
I have columns now with rich:inplaceInput and rich:inplaceSelect..
They work great at changing the value of row cell.
EXCEPT: when I sort by that column ascending or descending then the inplace edit will no longer work.
<rich:column id="col6" label="eStatus" sortBy="#{_item.estatus}"
width="10%">
<f:facet name="header">
<h:outputText id="col6a" value="eStatus" />
</f:facet>
<rich:inplaceSelect id="col6b" value="#{_item.estatus}" selectWidth="50" maxSelectWidth="50">
<f:selectItems id="selectItems" value="#{mconsoleContext.ecometryItemStatusCodesOnly}"/>
<a:support event="onviewactivated" reRender="col6b"/>
</rich:inplaceSelect>
</rich:column>
Is there anyway around this? This bug could halt production on this approach...
Looks like we may be able to live with this. Is this built this way by design?