Unselecting a row in browse window

sureshp

Member
I have a multiple selection browse window. i have used select-focused-row() method to select a row. I want to unselect a row what do i do.
 
How about the following methods:

deselect-focused-row()
or
deselect-selected-row(n)
or
deselect-rows()

Casper.
 
Select focused row method will put the current browse row record into the record buffer. You can not unselect the row, that goes against Bill and the Windows GUI concept. However if you want to unselect the focused row so the record is not in the record buffer simply RELEASE tableName.
 
No, that is not true for multiple select browser and I don't know what Bills got to do with it.
if you use deselect-focused-row() then the row is deselected and the buffer is pointed to the previous selected row. If there was only one row selected, the record buffer is cleared.
With deselect-rows() all rows are deselected and the record buffer is cleared.

Casper
 
Back
Top