A question about layout header

Is there a way to hide a header when expanding a cell?I attempted to delete the header property or set the headerHeight property, but that didn’t work. :thinking:

In this case you won’t be able to collapse a layout cell back.
Please, try to use:

layout.getCell("cell-id").config.full = false
layout.paint()

It works. Thank you very much!