My error prompt works well, when it's outside of the range it prompts the error message. If there a way to have it prompt the message and not stop code from running?
public string Nint
{
get
{
return _nint;
}
set
{
if(double.Parse(value) > (double) Product.MaximumRate || (double.Parse(value) < (double) Product.MinimumRate))
{
NintErrorEnabled = true;
throw new ValidationException();
}
NotifyOfPropertyChange();
}
}
"throw new ValidationException();" stops the code right in it's track. Could I still display the error message without stopping the code?


Hi,
I've encountered an issue where Radgridview crashes upon trying to display too many rows ~1000+. The radgridview is placed under a data template which in turn is part of a hierarchy child template. Upon hitting the expand button to display the grid view, the ui freezes after showing the rows. Upon reducing the number of rows in the data table to 60, all the rows appear without freezing. Any way I could get my 1000+ rows to appear without freezing the ui.
Best Regards,
CH
Hello,
I would like to extend the Calendar control to add the SpecialDays-Feature. I was able to override the SelectTemplate function and return two different DataTemplates. I also added a list of dates to the control, all those days are shown bold red in the calendar. This works fine if IsTodayHighlighted is set to false - whenever I enable this feature, the style of my SpecialDay-Feature is overwritten. How can I modifiy the style of the today field, based on the list that is bound to the control?
Thanks in advance
radShape.DragEnter += OnShapePositionChanged;radShape.AddHandler(RadDragAndDropManager.DragQueryEvent, new EventHandler<DragDropQueryEventArgs>(OnShapePositionChanged));

How to draw RadBarcode128 (Telerik.Windows.Controls) in RadFixedPage (Telerik.Windows.Documents.Fixed.Model).
I have tried to export image from Barcode as a FrameworkElement (BitMapImage) and draw this image into the RadFixedPage, but the quality of the image was very low.
Thanks.

I have problem with sorting on GridView
I have two number columns (integers) and when I click on the column header to sort it sorts them as string and not numeric values.
.xaml file
<telerik:RadGridView x:Name="gridViewOrders"
ShowGroupPanel="False"
AutoGenerateColumns="False"
CanUserSortColumns="True"
RowIndicatorVisibility="Collapsed"
IsFilteringAllowed="False">
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn DataMemberBinding="{Binding Order}"/>
<telerik:GridViewDataColumn DataMemberBinding="{Binding Account}" />
<telerik:GridViewDataColumn DataMemberBinding="{Binding Name}"/>
<telerik:GridViewDataColumn DataMemberBinding="{Binding Timestamp}"/>
</telerik:RadGridView.Columns>
</telerik:RadGridView>​
cs file
gridView​Orders.ItemsSource = tradesRepo.ListOfPendingOrders;​
Any ideas?
Thanks