This question is locked. New answers and comments are not allowed.
Hi,
looking into your examples I see that you set the scroll info using templates, but it has too much information to realize what is strickly necessary.
The only thing that I want is to set the scroll info with the data that exists in the 2nd column (Name in my case) instead of the 1st.
Could you point out what is missing here, nothing appear if I set this code...
Must I set a template for everything - rows, row headers, etc?
Thanks ahead for the replies.
L. Pinho
looking into your examples I see that you set the scroll info using templates, but it has too much information to realize what is strickly necessary.
The only thing that I want is to set the scroll info with the data that exists in the 2nd column (Name in my case) instead of the 1st.
| <grid:RadGridView IsReadOnly="True" x:Name="gridEntitiesList" AutoGenerateColumns="True" ColumnsWidthMode="Fill"> |
| <grid:RadGridView.Template> |
| <ControlTemplate TargetType="grid:RadGridView"> |
| <gridControl:ScrollPositionIndicator> |
| <gridControl:ScrollPositionIndicator.Template> |
| <ControlTemplate TargetType="gridControl:ScrollPositionIndicator"> |
| <ContentPresenter Content="{Binding}"> |
| <ContentPresenter.ContentTemplate> |
| <DataTemplate> |
| <TextBlock Text="{Binding Data.Name}"></TextBlock> |
| </DataTemplate> |
| </ContentPresenter.ContentTemplate> |
| </ContentPresenter> |
| </ControlTemplate> |
| </gridControl:ScrollPositionIndicator.Template> |
| </gridControl:ScrollPositionIndicator> |
| </ControlTemplate> |
| </grid:RadGridView.Template> |
| </grid:RadGridView> |
Could you point out what is missing here, nothing appear if I set this code...
Must I set a template for everything - rows, row headers, etc?
Thanks ahead for the replies.
L. Pinho