Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Cannot submit value of a spinbox [SOLVED]
Forum Updated to NodeBB v4.3 + New Features

Cannot submit value of a spinbox [SOLVED]

Scheduled Pinned Locked Moved General and Desktop
18 Posts 2 Posters 3.8k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    Mr. Kibu
    wrote on last edited by
    #5

    Ok, I set the mapper in the constructor, set the spinbox in a event-function and submit the data in a submit-function. So I think that I set the mapper befor.

    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #6

      What event function ?

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0
      • M Offline
        M Offline
        Mr. Kibu
        wrote on last edited by
        #7
        void frmBeleg::on_txtAnm1_editingFinished()
        {
            ui->txtBelegNr->setValue(4);//<<<< this is the spinbox that not work
            ui->txtAnm2->setText("tessst");//<<<this is a combobox; after submit is the value in the database
        }```
        1 Reply Last reply
        0
        • SGaistS Offline
          SGaistS Offline
          SGaist
          Lifetime Qt Champion
          wrote on last edited by
          #8

          Can you show how you setup the mapper ?

          Interested in AI ? www.idiap.ch
          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          0
          • M Offline
            M Offline
            Mr. Kibu
            wrote on last edited by
            #9

            Here is the constructor of the dialog (frmBeleg):

            frmBeleg::frmBeleg(int BelegID, QSqlRelationalTableModel *BelegMod, QWidget *parent) :
                QDialog(parent),
                ui(new Ui::frmBeleg)
            {
                ui->setupUi(this);
            
                mapper=new QDataWidgetMapper(this);
                mapper->setModel(BelegMod);
                //mapper->setSubmitPolicy(QDataWidgetMapper::ManualSubmit);
                mapper->setItemDelegate(new QSqlRelationalDelegate(mapper));
            
                mapper->addMapping(ui->txtBelegNr,2);//<<<<<    the spinbox
                mapper->addMapping(ui->txtAnm1,14);//<<<<<<<   the combo
            
                if (BelegID != -1) {
                        for (int row = 0; row < BelegMod->rowCount(); ++row) {
                            QSqlRecord record = BelegMod->record(row);
                            if (record.value(0).toInt() == BelegID) {//Spalte des Key-Feldes
                                mapper->setCurrentIndex(row);
                                break;
                            }
                        }
                    }
                    else {
                        mapper->toFirst();
                        }
            
            1 Reply Last reply
            0
            • M Offline
              M Offline
              Mr. Kibu
              wrote on last edited by
              #10

              Addition:

              It is no problem to use the passed model from the mainwindow in the constuctor of the dialog (frmBeleg).
              When I use the model (BelegMod) in a function, than I have no error at buildung the application but the programm crashes when I use the function in the programm.

              For example I tried:

              void frmBeleg::on_btnSave_clicked()
              {
                  mapper->submit();
              
                  if (BelegMod->submitAll())
                      BelegMod->database().commit();
                  else
                      BelegMod->database().rollback();
              
                  frmBeleg::close();
              }
              

              Or:

              void frmBeleg::on_btnNextBelegNr_clicked()
              {
                  QSqlQueryModel modMaxBelNr;
                  modMaxBelNr.setQuery("SELECT max(BelegNr) FROM Belege");
                  int nextBelegNr = modMaxBelNr.data(modMaxBelNr.index(0, 0)).toInt();
                  BelegMod->setData(BelegMod->index(0,2), nextBelegNr+1);
              }
              

              How can I use the passed model in a function?

              Thank's

              Franz

              1 Reply Last reply
              0
              • SGaistS Offline
                SGaistS Offline
                SGaist
                Lifetime Qt Champion
                wrote on last edited by
                #11

                Are you initializing BelegMod properly in the constructor ?

                Interested in AI ? www.idiap.ch
                Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                1 Reply Last reply
                0
                • M Offline
                  M Offline
                  Mr. Kibu
                  wrote on last edited by
                  #12

                  I hope that I have understand your question:

                  I am initializing the model "modBelege" in the function "on_actionBelege_triggered" like this:

                  void MainWindow::on_actionBelege_triggered()
                  {
                      ui->stackedWidget->setCurrentIndex(0);
                  
                      modBelege = new QSqlRelationalTableModel(this, cn::db());
                      modBelege->setEditStrategy(QSqlRelationalTableModel::OnFieldChange);
                      modBelege->setTable("belege");
                  
                      //modBelege->setRelation(19, QSqlRelation("Zahlarten","ZahlartKey","Zahlart"));
                      modBelege->setRelation(8, QSqlRelation("kontakte","AdrKey","Name"));
                      modBelege->select();
                      ......
                  

                  Then I pass the model (modBeleg) to the dialog:

                  void MainWindow::editBeleg()
                  {
                      //####search the row of the tableview "tabBelege"
                      QModelIndexList indexList = ui->tabBelege->selectionModel()->selectedIndexes();
                      int row;
                      foreach (QModelIndex index, indexList) {
                          row = index.row();
                      }
                  
                      //####get Key-value in column 0
                  
                      int _selBelegKey = ui->tabBelege->model()->data(ui->tabBelege->model()->index(row,0)).toInt();
                  
                      //#### open dialog:
                      frmBeleg newBeleg(_selBelegKey,modBelege, this);
                      newBeleg.exec();
                  }
                  

                  Hope it helps!

                  1 Reply Last reply
                  0
                  • SGaistS Offline
                    SGaistS Offline
                    SGaist
                    Lifetime Qt Champion
                    wrote on last edited by
                    #13

                    In the frmBeleg constructor, do you assign modBelege to BelegMod ?

                    Interested in AI ? www.idiap.ch
                    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                    1 Reply Last reply
                    0
                    • M Offline
                      M Offline
                      Mr. Kibu
                      wrote on last edited by
                      #14

                      I have only this code in frmBeleg:

                      frmBeleg::frmBeleg(int BelegID, QSqlRelationalTableModel *BelegMod, QWidget *parent) :
                          QDialog(parent),
                          ui(new Ui::frmBeleg)
                      {
                          ui->setupUi(this);
                          ...
                      
                      1 Reply Last reply
                      0
                      • SGaistS Offline
                        SGaistS Offline
                        SGaist
                        Lifetime Qt Champion
                        wrote on last edited by
                        #15

                        From your code it seems that you don't initialize your class member that is also named BeleMod

                        Interested in AI ? www.idiap.ch
                        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                        1 Reply Last reply
                        0
                        • M Offline
                          M Offline
                          Mr. Kibu
                          wrote on last edited by
                          #16

                          And how can I do this? And is it better to rename BelegMod?

                          1 Reply Last reply
                          0
                          • SGaistS Offline
                            SGaistS Offline
                            SGaist
                            Lifetime Qt Champion
                            wrote on last edited by SGaist
                            #17
                            frmBeleg::frmBeleg(int BelegID, QSqlRelationalTableModel *BelegMod, QWidget *parent) :
                                QDialog(parent),
                                ui(new Ui::frmBeleg),
                                BelegMod(BelegMod)
                            {
                            

                            But yes,

                            frmBeleg::frmBeleg(int BelegID, QSqlRelationalTableModel *model, QWidget *parent) :
                                QDialog(parent),
                                ui(new Ui::frmBeleg),
                                BelegMod(model)
                            {
                            

                            is clearer.

                            One thing I recommend: use a clear naming scheme e.g. camel case with starting letter lowercased for variables and camel case for classes. It will make your code easier to read (following Qt's pattern is good idea)

                            Interested in AI ? www.idiap.ch
                            Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                            1 Reply Last reply
                            0
                            • M Offline
                              M Offline
                              Mr. Kibu
                              wrote on last edited by
                              #18

                              Hi SGaist!

                              It works. Thank you for your help!

                              märssi

                              Franz

                              1 Reply Last reply
                              0

                              • Login

                              • Login or register to search.
                              • First post
                                Last post
                              0
                              • Categories
                              • Recent
                              • Tags
                              • Popular
                              • Users
                              • Groups
                              • Search
                              • Get Qt Extensions
                              • Unsolved