Making selected row false in a table

Hi all,

  I have an async table with values populated in it. I am making a selection and copying the current values to some output contorls on another panel.That panel has a cancel button and a save button.On click of either one of them i have to come back. While doing so the previous row is still selected. So if i click that row again the row is deselected and the value copying is not happening.Then, I decided to use setRowSelected(false)method for making the selection false on click of Save or Cancel. In this case it is taking a large processing time for large data.

Any other solution for this.

Thanks,
tmv

Maybe you could try calling the setRowSelectedIds API on the table content provider instead and pass it an empty collection to uncheck all the rows.

See:
http://techcommunity.softwareag.com/ecosystem/documentation/webmethods/wmsuites/wmsuite8-2_ga/My_webMethods/8-2-SP1_CAF_and_MWS_Java_API_Reference/com/webmethods/caf/faces/data/ISelectableTableContentProvider.html#setRowSelectedIds(java.util.Collection)

Thanks Mr.Norman

thats what we are following now…