Skip to content

Instantly share code, notes, and snippets.

@fecub
Last active August 29, 2015 14:12
Show Gist options
  • Save fecub/cb7b69c2a5568efe49b8 to your computer and use it in GitHub Desktop.
Save fecub/cb7b69c2a5568efe49b8 to your computer and use it in GitHub Desktop.
Show Record or KeyValues QRelationTableModel
//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