Last active
August 29, 2015 14:12
-
-
Save fecub/cb7b69c2a5568efe49b8 to your computer and use it in GitHub Desktop.
Show Record or KeyValues QRelationTableModel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Show value | |
qDebug() << blayer->TableContentRTM("Produkte")->record(pIndex.row()).value("Image"); | |
// show key Values in table | |
qDebug() << blayer->TableContentRTM("Produkte")->record(pIndex.row()).keyValues(blayer->TableContentRTM("Produkte")->record(pIndex.row())); | |
qDebug() << blayer->TableContentRTM("Produkte")->record(pIndex.row()).fieldName(6); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment