Currently I have this code here
}else if (currentUrl == "http://api.stackmob.com/issue" && post == "NO"){
setGroupDataModel(response, "desc");
QDeclarativePropertyMap* propertyMap = new QDeclarativePropertyMap;
propertyMap->insert("name", currentProjectNameSelected);
QmlDocument *qml = QmlDocument::create("asset:///projectissues.qml").parent(this);
qml->setContextProperty("cppObj", propertyMap);
//qml->setContextProperty("cppObj", this);
Page* root = qml->createRootObject<Page>();
pane->push(root);
Whenever I use the ("cppObj", this); It displays all the items from stackmob in a listview but the name of the label in the qml is not displayed. However, when I use the ("cppObj", propertyMap) it doesnt display the listview from stackmob but it displays the label of the qml. What should I do?