access each in base each element

Hi,

My json is :

 { anketler:[
  {
      id:4,
      baslik:"falan",
      oylanmis:false,
      secenekler:[
          {id:1,baslik:"test1"},{id:2,baslik:"test2"}
      ]

  },
  {
      id:5,
      baslik:"milan",
      oylanmis:true,
      secenekler:[
          {id:3,baslik:"test3"},{id:4,baslik:"test4"}
      ]

  }
]}

And my ux :

<Each Items="{data.anketler}">
    <Text Value="{baslik}" />
    <Each Items="{secenekler}">
        <Panel ux:Name="oy">
            <Text Value="{baslik}" />
            <WhileTrue Value="{HERE CAN BE oylanmis }">                <Change oy.Color="#33aaff" />
            </WhileTrue>
        </Panel>

    </Each>
</Each>

Thanks for advice.

That should work, as long as the objects in the array secenekler don’t have that property name oylanmis

I can need the access super element property e.g:

x.oylanmis vs… x here super element

Cant you have your WhileTrue element as a child of first Each?