Jdev 11.1.1.7
I have a table in my page written as:
<af:table value="#{bindings.ApplicationsVO1.collectionModel}"
var="row"
rows="#{bindings.ApplicationsVO1.rangeSize}"
emptyText="#{bindings.ApplicationsVO1.viewable ? 'No data to display.' : 'Access Denied.'}"
fetchSize="#{bindings.ApplicationsVO1.rangeSize}"
rowBandingInterval="0" width="920"
filterVisible="true" varStatus="vs"
partialTriggers="::cb4 ::cb_clear ::cb1"
selectedRowKeys="#{bindings.ApplicationsVO1.collectionModel.selectedRow}"
selectionListener="#{pageFlowScope.ApplicationBean.selectApplicationTable_SelectionListener}"
rowSelection="single" id="t1"
disableColumnReordering="true"
binding="#{pageFlowScope.ApplicationBean.applicationTable}">
..
..
..
</af:table>
This allows me to select the rows one my one and navigate through the rows.
Under certain circumstances(on the click of button) i need to disable the table row selection so that user would not be able to navigate through the rows of the table.
What is the best way to achieve that?