Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Yeah, when you are editing data within a business object, it's recommended to turn off any filters or sorts because the business object will change it's CurrentRow as the data within the sorted column changes. The CurrentRow property doesn't have a backing field... it's just a wrapper that returns CurrentView(CurrentRowIndex). So, since the row index is static as the data changes, the CurrentRow will pull different rows because the rows are being reordered/filtered.
|