Hi all,
I have a form with multiple datasources in different grids. I am implementing a logic that if a user selects the record in one grid, it should filter the records in another based on the value of a filter control.
I have used the selectionChanged() method for that purpose, so when form open user set the value in filter control and then select any record in the grid, the filter applies in another datasource. but the problem with selectionChanged() method is that they only get called when the user selects a new record. So if I open a form and my datasource has only one record in it, I set the value in filter conrol and then select that one record of the datasource which is already selected, the method wouldn't get called. I have tried with active() method too, it also has the same behaviour.
Can anybody suggest which datasource method should I use when the user selects the already selected record in the form grid?