| | | 
StrataFrame User
       
Group: StrataFrame Users Last Login: Today @ 7:42:15 AM Posts: 359, Visits: 2,323 |
| | Would it be possible to have a property on the browse dialog to only fill the BusinessObjectToPopulate with the selected row rather than all the rows that were returned in the initial search. |
| | | | 
StrataFrame Developer

Group: StrataFrame Developers Last Login: Today @ 4:52:53 AM Posts: 4,586, Visits: 4,571 |
| | We could, but you can do this yourself very easily by handling the BrowseDialogClosed event and stripping out the other records: MyBo.Filter = "MyPkField = " & MyBo.MyPkField.ToString() MyBo.CopyDataFrom(MyBo,ClearAndFillFromDefaultView) |
| | | | 
StrataFrame User
       
Group: StrataFrame Users Last Login: Today @ 7:42:15 AM Posts: 359, Visits: 2,323 |
| | Hi Trent, I guess I should have mentioned that I am currently handling this in the browse dialog closed event, however I am also handling the current data table refilled event of the businessobjecttopopulate. Handling the closed event is after the fact so in effect the code I have in the current datatable refilled event fires 2 times. |
| | | | 
StrataFrame Developer

Group: StrataFrame Developers Last Login: Today @ 4:52:53 AM Posts: 4,586, Visits: 4,571 |
| We can add this to the enhancement list. |
| | | | 
StrataFrame User
       
Group: StrataFrame Users Last Login: Today @ 7:42:15 AM Posts: 359, Visits: 2,323 |
| | |
|
|