Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
The UltraGridRow object has a property called (I think) ListObject. This property returns the reference to the backing data object of the row. So, if you're binding through a BBS, then the ListObject property will return a reference to the business object, and that business object reference will be on the right row. So, I would say to try using the grid events, but instead of calling CheckRulesOnCurrentRow(True) on the BO that you dropped on the form, cast the ListObject property as your business object type and call the CheckRulesOnCurrentRow(True) on it instead.
|