This is a migrated thread and some comments may be shown as answers.

How can I do for my Items inside a ListView start at the right to left?

1 Answer 122 Views
ListView
This is a migrated thread and some comments may be shown as answers.
Adriano
Top achievements
Rank 1
Adriano asked on 09 Jun 2019, 11:16 AM
I want make my Items inside a ListView going right to left.
At the moment I have default settings:

![Image](https://i.imgur.com/NDE3Y8c.png)

As you can see I have a hole in the right and I want to reverse this, put a hole in the left.
Hope you understand the problem.

```
 <telerikDataControls:RadListView ItemsSource="{Binding CatalogSizes, Source={x:Reference ExtendedContentView}}" >
    <telerikDataControls:RadListView.ItemTemplate>
        <DataTemplate>
            <listView:ListViewTemplateCell>
                <listView:ListViewTemplateCell.View>
                    <Frame Padding="0" CornerRadius="3.5" BackgroundColor="{Binding IsEnabled, Converter={StaticResource Batata}, ConverterParameter={x:Reference Name=MainColorGrid}}">
                        <Label Text="{Binding Quantity}" FontAttributes="Bold" HorizontalTextAlignment="Center" VerticalTextAlignment="Center"/>
                     </Frame>
                 </listView:ListViewTemplateCell.View>
             </listView:ListViewTemplateCell>
          </DataTemplate>
      </telerikDataControls:RadListView.ItemTemplate>
      <telerikDataControls:RadListView.LayoutDefinition>
          <listView:ListViewGridLayout SpanCount="3" HorizontalItemSpacing="3" />
       </telerikDataControls:RadListView.LayoutDefinition>
</telerikDataControls:RadListView>
```

1 Answer, 1 is accepted

Sort by
0
Didi
Telerik team
answered on 10 Jun 2019, 12:38 PM
Hi Adriano,

Thank you for the provided code.

You could positioned the items in right to left direction if the device language and culture is right to left. 

I hope the provided information was helpful.

Regards,
Didi
Progress Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
ListView
Asked by
Adriano
Top achievements
Rank 1
Answers by
Didi
Telerik team
Share this question
or