This is a migrated thread and some comments may be shown as answers.

NotImplementedException was unhandled by user code

1 Answer 67 Views
Spreadsheet
This is a migrated thread and some comments may be shown as answers.
Claudine
Top achievements
Rank 1
Claudine asked on 09 Apr 2013, 10:13 AM
Hi,

I'm trying out the radSpreadSheet (started by simply copy-pasting the XAML at http://www.telerik.com/help/silverlight/radspreadsheet-getting-started.html) and stumbled on the above error message when trying to handle some events (I was trying to see what they did):

  • radSpreadsheet.Tap event
  • radSpreadsheet.ManipulationCompleted event
  • radSpreadsheet.ManipulationStarted event

I received these errors by opening the view in which the radSpreadSheet was contained. Implementing events like

  • radSpreadsheet.TextInputUpdate
  • radSpreadsheet.TextInput

does not cause this error.

Am I missing some reference or anything like that? I have the following added (also from the above link):

  • System.Windows.Controls
  • Telerik.Windows.Controls.dll
  • Telerik.Windows.Controls.Spreadsheet.dll
  • Telerik.Windows.Documents.Core.dll
  • Telerik.Windows.Documents.SpreadSheet.dll
  • Telerik.Windows.Maths.dll

I was actually trying to find an event like CellEditedEvent or something  similar. Is this present in the radSpreadSheet?
I'm using Telerik Silverlight Controls 2013 Q1, version 2013.1.403.1050.

Thanks.

1 Answer, 1 is accepted

Sort by
0
Andrew
Telerik team
answered on 10 Apr 2013, 08:42 AM
Hi Claudine,

The assemblies you included in your project are the correct ones.

The issue you are facing resides in the fact that this event belongs to the UIElement class and it is not implemented by Microsoft. This means that even if you attach to Grid's (also a successor of UIElement) Tap event, you will get the same error. We are unaware of the reason why Microsoft decided not to implement it. Actually, it has an attribute set to it which prevents it from displaying in the IntelliSense - [EditorBrowsable(1)] which means it is not supposed to be used. This is true for all of the three events you mentioned.

I hope the provided information is helpful.

Kind regards,
Andrew
the Telerik team

Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.

Tags
Spreadsheet
Asked by
Claudine
Top achievements
Rank 1
Answers by
Andrew
Telerik team
Share this question
or