This question is locked. New answers and comments are not allowed.
I've a grid with 3 GridViewColumn defined with style and template and so on...
Every column has his style and template. This is one of this:
Out of the grid I have a tree and when i click an item on the tree the grid load the details. But after the first load, the grid doesn't refresh, is empty, even if the data are correct (i see on debug).
If I click allways on the first item the grid load the same data and refresh correctly, but when i Click on other node the grid seems not loading the template(or similar...)
Any Idea?
there's some "grid.refresh item template " to call?
Thanks
Every column has his style and template. This is one of this:
<
telerikGridView:GridViewDataColumn Width="*">
<telerikGridView:GridViewDataColumn.CellTemplate>
<DataTemplate>
<StackPanel VerticalAlignment="Top">
<StackPanel Orientation="Horizontal" Margin="5">
<TextBlock Text="Codice:" FontWeight="bold"></TextBlock>
<TextBlock Text="{Binding voce_listino.codice}" ></TextBlock>
</StackPanel>
<ScrollViewer Margin="0,5,5,0">
<TextBox Height="80" AcceptsReturn="True" IsReadOnly="True" BorderThickness="0" Background="#00FFFFFF" TextWrapping="Wrap" Text="{Binding voce_listino.descrizione}" ></TextBox>
</ScrollViewer>
</StackPanel>
</DataTemplate>
</telerikGridView:GridViewDataColumn.CellTemplate>
</telerikGridView:GridViewDataColumn>
Out of the grid I have a tree and when i click an item on the tree the grid load the details. But after the first load, the grid doesn't refresh, is empty, even if the data are correct (i see on debug).
If I click allways on the first item the grid load the same data and refresh correctly, but when i Click on other node the grid seems not loading the template(or similar...)
Any Idea?
there's some "grid.refresh item template " to call?
Thanks
