hello everybody
i want to display data from my external data base
based on the value in the search field , also i want to make option that i can add this item that appeared in the list according to the search value to something like the cart but for the seller to calculate the whole price and display this whole price in label in the same page
thanks in advance
Hi Mostafa,
For getting the data from external data base you need to use OutSystems Integration Studio. Below is the link for the same -
https://success.outsystems.com/Documentation/11/Extensibility_and_Integration/Integrate_with_an_External_Database/Integrate_with_an_External_Database_using_Integration_Studio
Once you are done with Integrate with an External Database using Integration Studio. You need to add external database entity in your module using manage dependency.
On Screen you need to use data action for fetch data from external system. Below is the link for the same.
https://success.outsystems.com/Documentation/11/Developing_an_Application/Implement_Application_Logic/Actions_in_Reactive_Web_and_Mobile_Apps
You need use aggregates for external database entity and apply filter based on your search field. Aggregates contains On After Fetch event available to perform calculations on results.
Thanks