Hi All,

I am stuck with a problem, I was wondering is there any way to just show children in a Qtreeview not it's parent.
For instance.

If this is the tree

Qt Code:
  1. AAA--
  2. |
  3. A _
  4. |
  5. a1
  6. |
  7. a2
  8. |
  9. a3
  10. |
  11. a4
To copy to clipboard, switch view to plain text mode 

I want only this to be shown, that is without Root node (AAA in this case)

Qt Code:
  1. A _
  2. |
  3. a1
  4. |
  5. a2
  6. |
  7. a3
  8. |
  9. a4
To copy to clipboard, switch view to plain text mode 


I searched a lot in net, but without success. If I hide the root row, I am not able to see it's children,I think there should be some way to do that .


Thanks in advance.