I have a listview with groupdatamodel, i need to insert the list data at end of the groupdatamodel, Here i have pasted the code what i have done
GroupDataModel {
id: grouplistdatamodel
},
DataSource {
id: dataSource
source: "http://myurl.com"
onDataLoaded: {
grouplistdatamodel.insertList(data); //it will insert the data at first position in listview but i need to insert the data at last position
}
}
Can anyone help me about this regards,