Hi,
This is pretty simple but i lost somewhere when i am working on this .Here i post my example.
I need to read a property which is declared inside a delegate from its parent.How do i do ?

Qt Code:
  1. ListView{
  2. id: listView
  3. property bool indeeee: listView.contentItem.childrenRect.check
  4. state: listView.indeeee ? "moved" : ""
  5. delegate: delegateItem
  6. }
  7. Component{
  8. id: delegateItem
  9. Row{
  10. id: rowww
  11. spacing: 20
  12. property bool [COLOR="#FF0000"]check[/COLOR]:index===2 ? true : false
  13. }
  14. }
To copy to clipboard, switch view to plain text mode 

I tried to read with listView.contentItem.childrenRect.check which says unable to assign undefined to bool

Regards
Bala B