Hedge
Hedge

Reputation: 16748

Make TableViewColumn not resizeable

I've got a TableView with two TableViewColumns and would like to prevent them from being resized. How can I do this?

TableView {

   TableViewColumn {
      title: "Name"
      width: parent.width - 20
   }

   TableViewColumn {
      width: 18
      delegate: CheckBox {
   }
}

Upvotes: 0

Views: 106

Answers (1)

Meefte
Meefte

Reputation: 6735

  TableViewColumn {
     title: "Name"
     width: parent.width - 20
     resizable: false
  }

Upvotes: 2

Related Questions