Details
-
Suggestion
-
Resolution: Unresolved
-
P2: Important
-
None
-
None
-
None
Description
This would allow e.g. finding an object of a specific type, like an animation:
let animation = findChildIf(control, (child) => { return child as Animation })
verify(animation)
Or all animations:
let animations = findChildrenIf(control, (child) => { return child as Animation })
verify(animations)
Attachments
Issue Links
- relates to
-
QTBUG-19541 Better way to find objects in QML via C++
- Open