I would like to obtein the Id of the selected row in a datable but instead i am getting the one selected before, not the current selectetion. My code its the following
<p:dataTable id="translationsTable" var="translation" value="#{videoBean.lyric.polylrcList}" rowKey="#{translation.lang}" selectionMode="single" selection="#{videoBean.selected}">
<p:ajax event="rowSelect" update="translationsTable" process="translationsTable" oncomplete="alert(#{videoBean.selected.id});"/>
</p:dataTable>
it should show the current id, but its always showing me the last one.
Any idea?
Thanks