Hiii everyOne,

I have a listView that contains some elements :
Qt Code:
  1. ListView {
  2. model: menuModel
  3. delegate: categoryDelegate
  4. ...
  5. }
  6. ListModel {
  7. id: menuModel
  8. ListElement {
  9. ...
  10. Component {
  11. id: categoryDelegate
  12. Column {
  13. Rectangle {
  14. id: categoryItem
  15. ...
  16. Image {
  17. id: img
  18. ...
  19. }
To copy to clipboard, switch view to plain text mode 

I want for each element (each rectangle) load a specific image
The code above load the same image for each element

Cheers,