We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
can i use filtering and sorting to a hierarchical source? this is just for example my model is ListModel not json :
{ "identifier": 2, "childs": [{ "identifier": 201, "name": "a", "image": "\ueae5", "levels": [{ "level": 1, "push": "surathesab.qml" } ] }] }, { "identifier": 3, "name": "b", "image": "\uf02c", "childs": [{ "identifier": 301, "name": "c", "image": "\uf53c", "levels": [{ "level": 1, "push": "check.qml" } }] }
final output should be name=="a" and name=="c" so in this data i should see levels!=null which i go with this :
name=="a"
name=="c"
ValueFilter{ roleName: "levels" value: !null }
but , name == "c" is a child how can i handle it?
name == "c"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
can i use filtering and sorting to a hierarchical source?
this is just for example my model is ListModel not json :
final output should be
name=="a"
andname=="c"
so in this data i should see levels!=null which i go with this :
but ,
name == "c"
is a child how can i handle it?The text was updated successfully, but these errors were encountered: