or
WPF v2011.2.712.40
We have a grid showing a list of contacts with email addresses. If an email is not valid a UriFormatException is thrown when just hovering over the hyperlink or trying to click on the hyperlink. How can we trap this and stop the exception from being thrown? I looked for error events on the grid and could not find anything obvious.
<telerik:GridViewDynamicHyperlinkColumn Header="Email" NavigateUrlMemberPaths="EmailAddress" NavigateUrlFormatString="{} mailto:{0}" DataMemberBinding="{Binding EmailAddress}" />

<
telerik:GridViewComboBoxColumn
DataMemberBinding="{Binding Path=ActivityType}"
DisplayMemberPath="Name"
SelectedValueMemberPath="ID"
HeaderText="‘…‚ ”’‰…"
UniqueName="ActivityType" />
((
GridViewComboBoxColumn)this.RadGridView1.Columns[10]).ItemsSource = GetActivityTypes();
RadGridView1.ItemsSource = GetDataGrid();
Item="{Binding BindingObject,NotifyOnSourceUpdated=True,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"Basically, is there a way to refresh the Selected Category Items Pane, or a better way to bind the item dynamically?
<telerik:RadPanelBar x:Name="pnlTopic" HorizontalAlignment="Left" VerticalAlignment="Top" Orientation="Vertical" ExpandMode="Single" telerikQuickStart:ThemeAwareBackgroundBehavior.IsEnabled="True" ItemsSource="{Binding Topics}" SelectedItem="{Binding SelectedTopic}"> <telerik:RadPanelBar.ItemTemplate> <DataTemplate> <telerik:RadPanelBarItem Header="{Binding Name}" IsSelected="True" IsExpanded="{Binding DataContext.IsExpanded,ElementName=pnlTopic}" x:Name="pnliTopic" > <ListBox x:Name="lstSubTopics" ItemsSource="{Binding DataContext.SubTopics,ElementName=pnlTopic}"> <ListBox.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding Name}" Margin="2" FontWeight="SemiBold" /> </DataTemplate> </ListBox.ItemTemplate> </ListBox> </telerik:RadPanelBarItem> </DataTemplate> </telerik:RadPanelBar.ItemTemplate> <i:Interaction.Triggers> <i:EventTrigger EventName="SelectionChanged"> <i:InvokeCommandAction Command="{Binding AccordionSelectionChange}" CommandParameter="{Binding Item}"/> </i:EventTrigger> </i:Interaction.Triggers> </telerik:RadPanelBar>