or
Hello
We generate GridViewDataColumn columns in run time
We give cell template and cell edit template
When the cell goes out from edit mode it throws
Null reference exception in TryConvertValueFromEditor at GriveViewCell Class
Dll version 2013.2.611.45
If I don’t give cell edit template this not happened.
Any ideas why this happens?
Best Regards
Ehud
<telerik:RadCartesianChart> <telerik:RadCartesianChart.HorizontalAxis> <telerik:DateTimeContinuousAxis MaximumTicks="5" PlotMode="OnTicksPadded"/> </telerik:RadCartesianChart.HorizontalAxis> <telerik:RadCartesianChart.VerticalAxis> <telerik:LinearAxis/> </telerik:RadCartesianChart.VerticalAxis> <telerik:BarSeries Name="mS"> </telerik:BarSeries> <telerik:RadCartesianChart.Behaviors> <telerik:ChartPanAndZoomBehavior/> </telerik:RadCartesianChart.Behaviors> </telerik:RadCartesianChart>public MainWindow() { InitializeComponent(); for (int i = 0; i < 100;i++ ) mS.DataPoints.Add(new Telerik.Charting.CategoricalDataPoint() { Category = System.DateTime.Today.AddDays(i), Value = 5 }); }<telerik:RadMaskedNumericInput x:Name="txtClientNumber" FormatString="D6" MinWidth="80" Margin="3,0" VerticalContentAlignment="Center" FontSize="15" Value="{Binding ClientNumber, UpdateSourceTrigger=PropertyChanged}" Mask="#6" />