'Nativescript - How to get global (view)model value(s) inside the listView (item) and not the current item value

Here the normal set and get of the list items values, inside the listview:

<ListView items="{{ items }}">
    <ListView.itemTemplate>
        <StackLayout>
            <Label text="{{value}}" />
        </StackLayout>
    </ListView.itemTemplate>
</ListView>

But, how do i get from there* the values from the (view)model ?
*(inside the list)

I just can't figure it out, can you please help me?
Thank you very much and all the best to you all!



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source