ProgressNS / nativescript-ui-feedback

This repository is used for customer feedback regarding Telerik UI for NativeScript. The issues system here is used by customers who want to submit their feature requests or vote for existing ones.
Other
115 stars 21 forks source link

ListView: Item template name must not equal 'Default' #1365

Open markusmauch opened 4 years ago

markusmauch commented 4 years ago

In both, ListView and RadListView an item template named 'Default' will cause the item to be rendered as [object Object] instead of the desired result.

<ListView>
  <ListView.itemTemplates>
    <template key="Default">
      <StackLayout>
        <Label text="Default"></Label>
      </StackLayout>
    </template>
  <ListView.itemTemplates>
</ListView>