I have an app (Flask/Python and Bootstrap) to show details on the web. Tables are creating dynamically based on specific filters from post request. Full information can be displayed in two tables: lets says "Rents" and "Payments". First column of each table is the id.
Would it be possible to create an html with interactive tables where I can select the row in Rents table and "Payments" table will be updated accordingly to selected id to show only data of that specific Rent?
I don't want sending post/get requests for each time for updating the data. Would prefer to have it dynamically change on client side (of cause, if it is possible).
