Search code examples
sapui5

SAPUI5 - Hiding a table column?


I have a a table rendered from an xml view.

Is there a way I can hide an entire column in the controller?


Solution

  • Solution was this:

    view.byId("DefaultTimesTable").getColumns()[4].setVisible(false)