Reputation: 5
I see the Master Detail Feature in the documentation of RapidClipse 4, but in the newest version X it seems that feature is missing. Same for the standard buttons in the Form Wizard. I cannot find it in RapidClipse X. Are both features actually only existent in RapidClipse 4 but not in X? If so, are there any tutorials on how to manually implement master detail and form buttons in RapidClipse X?
Upvotes: 0
Views: 82
Reputation: 143
For this case I use simple two grids. For example, one grid gets filled by the customers and the second grid is connected to the orders. You can use for the first grid the selectionChangeEvent. If you select a customer, you can take within the event the selectedCustomer and update the second grid. For this you should implement into the orderDAO something like
select * from orders where customer := selectedCustomer
I would also suggest, to search for the RapidClipseX videos in YouTube. Such things are very well explained by life examples there.
The second part of your question is unclear. All standard ui-objects are also available in RapidClipse X.
Upvotes: 1