Lv_page_glue_obj with textarea on page

Is it possible to scroll a page that contains textareas by dragging the textarea? I’ve tried lv_page_glue_obj but I have to click and drag outside the textareas to scroll the page.

Which version of LVGL are you using?

I have just cloned V7.11.0. Still the same.

Just checked, it works for a button but not for textarea.

You can use:

    lv_page_set_scroll_propagation(textarea1, true);

Note that, v8 is out for testing and scrolling works very intuitive there. If the content (children) of any type of object is out of the object, the container object becomes scrollable. The scrolling is chained automatically to the nearest scrollable parent.

Thanks, that works.