There is a table layout with 12 text fields (four rows of three fields). How to implement, so that by pressing Tab, switching went not horizontally, but vertically?
for (int i = 0; i < 11; i++) setTabOrder(ui->gridLayout->itemAt(i)->widget(), ui->gridLayout->itemAt(i + 1)->widget()); How to do the same for columns only?