Using lv_group with lv_table

Hi guys. Maybe someone can help me.
When I create an lv_group and add an lv_table created for several elements there, navigation to the next elements in the table is impossible. That is, I always focus only on the first element of the table (you can click on it, but you cant move to the next one using LV_KEY_NEXT).
Tell me how to add lv_table to lv_group?
I do it this way:

lv_obj_t * table = lv_table_create(lv_screen_active());
lv_group_t *gr= lv_group_create();
lv_group_add_obj(gr, table);
lv_indev_set_group(indev, gr);

Thanks!

OK, my mistake. Its all about: Table (lv_table) — LVGL documentation