Hi everyone,

I'm having an issue and I typically hate asking questions on forums. The issue is the tab order on one of my widgets. I know QT sets tab ordering based upon the order in which the widgets are created in the designer. Luckily this ordering is working. However, the tab ordering is completely off. When I manually set Tab ordering by setTabOrder(widget*, widget*), this tab ordering is also not being followed. Here is an example of some of my code.

setTabOrder(ui->m_tableView, ui->widget);
setTabOrder(ui->widget, ui->m_editWidget);
setTabOrder(ui->m_editWidget, ui->m_setInputWidget);
setTabOrder(ui->m_setInputWidget, ui->m_tableView);

Just as a note m_editWidget and widget are container widgets of spinboxes and other things. m_setInputWidget is a customer widget that was "promoted" using Qt's promote functionality. From my understanding the tab order should tab to these specific widgets and the tab through those widgets sub widgets through the default QWidget::focusNextPrevChild. So if anyone has any ideas or suggestions to help me, I'd be most appreciative.