[quote author="Schneidi" date="1392378277"]Hey onek24,
ok with this approach I access the properties of the model right ?[/quote]
Yes, you access the model OR you could access the item/children by itself. I provided the code for that above, too. But keep in mind: QML delegates are construkted and destroyed dynamically. Only visible delegates are existent.
[quote author="Schneidi" date="1392378277"]
Is there also a way to change the height property of the delegate Item {}
like the one above ?
@height: 50 //this propertie must be changed dynamically@
Or do I have to pass the height via the model and change the height in the model ?[/quote]
You can change the height of it using:
@menu_model.get(i).height = 50@