How to access the data of a related panel from the controller

Hello

You can get the value of panel-related field using field value.
For your field="$productList" it can be accessed like List productList = (List) request.getContext().get("productList");

Thank you