Unplanned
Last Updated: 03 Aug 2016 13:25 by ADMIN
ADMIN
Created by: Geri
Comments: 0
Category: ListBox
Type: Bug Report
0
When there is an item with longer content and it is not visible initially, the horizontal scroll appears later and hides the last item.
Unplanned
Last Updated: 03 Aug 2016 13:28 by ADMIN
Declined
Last Updated: 08 Oct 2014 14:34 by ADMIN
Created by: Alexi
Comments: 1
Category: ListBox
Type: Bug Report
0
Currently I´m testing the latest versión of Telerik Silverlight and the RadListBox control is crashing when binding VisualizationLayer items from RadMap control. It doesn´t show error information, the screen is withe.
This is the code I´m using:

VIEW

 <Grid>
  <Grid.Resources>
    <converters:ItemsMapToLayerStringConverter  x:Key="ItemsMapToLayerStringConverter" />
  </Grid.Resources>
  <Grid.RowDefinitions>
    <RowDefinition Height="*"/>
    <RowDefinition Height="Auto"/>
  </Grid.RowDefinitions>
  <telerik:RadMap x:Name="Map">
    <telerik:RadMap.Providers>
      <telerik:OpenStreetMapProvider />
    </telerik:RadMap.Providers>
  </telerik:RadMap>
  <telerik:RadListBox ItemsSource="{Binding ElementName=Map, Path=Items, Converter={StaticResource ItemsMapToLayerStringConverter}}" Gid.Row="1" >
    <telerik:RadListBox.ItemTemplate>
      <DataTemplate>
        <TextBlock Text="{Binding Tag}"/>
      </DataTemplate>
    </telerik:RadListBox.ItemTemplate>
  </telerik:RadListBox>
</Grid>

CONVERTER.

public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
  var mapa = value as RadMap;
  var capas = mapa.ChildrenOfType<VisualizationLayer>().ToList();
  return capas;
}
Completed
Last Updated: 14 Jan 2016 15:38 by ADMIN
Available in the 2014 Q2 Release.
Completed
Last Updated: 14 Jan 2016 15:40 by ADMIN
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
If on SelectionChanged() a ChildWindow is displayed, the last selected item will remain in MouseOver state even after the selection is changed to another item.