Hi,
I have two separate questions for the same page, so I am putting them together.
1.) I have a dropdown that lets the user select a customer. Once the customer is selected, the column on the right becomes visible and shows the listview of customer orders and under that list is another listview which shows the list of order line items. The orders listview is getting populated by a page state variable set upon choosing the customer. Under orders is a field of order line items which then populates that listview.
The problem is that scroll is not working. I have set the column the be scrollable, listview are scrollable by default. I have even wrapped that entire column in a list view to be scrollable, but that doesn't work either. I am guessing the issue is that when the page is built, the scroll is not needed but when a customer gets selected scroll becomes necessary but I am not updating the component/widget i.e. telling it to now scroll. Any ideas on how to do this? I could not find anything related.
2.) When the user selects any order by clicking the checkbox, I want all sub-orders to have their checkboxes selected as well and same on unselection. Again, I can do this by setting initial value at the time of page load, but once the page is loaded that does not work. What would be the best way to do this?
Thanks,.