Reputation: 582
I have one browser displaying customer details. When I select one row (ie one customer) in that browser I want to get the Customer Number of that customer.So that I can populate another browser "OrderBrowser" which will display the order of the selected Customer.How?
Upvotes: 0
Views: 1540
Reputation: 254
you should use a trigger
ON VALUE-CHANGED OF BrowserHandle DO:
your code
END.
Upvotes: 1