Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
A couple of things. FIrst of all, you will need to have a PK in order to setup any type of parent/child relationship in order for their to be a foreign key constraint. Otherwise, you will have to create your own Fill method to populate. Secondly, if you have a filter applied and BO already populated with data, then you will want to use the CopyDataFrom method on the BO rather than requerying the database. If you already have the records loaded in another BO and want to populate a combo or other SF list, then you will want to setup the list to call the CopyDataFrom method and then pass over the already filtered/populated BO. There are a lot of samples of this, but you can look at the StrataFlix sample and anywhere you see a child listview it will be populating like this. If this doesnt' get you going then let us know and we will try and give more details and steer you in the right direction.
|