Add click area to display zone

Description

What MCU/Processor/Board and compiler are you using?

Waveshare ESP32-S3 touch LCD 7’’

What LVGL version are you using?

8.3

What do you want to achieve?

manage click event on labal or image

Screenshot and/or video

I’m trying to add a click event to the red highlighted area. It’s made up of five labels and an image (Every component takes up a single cell of the grid below).
Can someone help me with this?
If that’s not doable, are there any alternatives?

thanks for support

you need use lv_obj_add_flag(lable, LV_OBJ_FLAG_CLICKABLE);and lv_obj_add_flag(img, LV_OBJ_FLAG_CLICKABLE);

thanks,
That’s exactly what I needed