I have skipped a few releases with Reporting. We have a solution which makes extensive use of textbox formatting based off of the data of each textbox. This solution was developed in VS 2008 and last Telerik upgrade was to 6.0.12.215. I have not touched it in months and works great in production.
I have some new reports to make, and have converted the project from VS 2008 to VS 2010, no errors reported. Also installed Q1 2013 Telerik reporting this morning, no errors in the upgrade process.
Every existing format is now blank for the rule, though the rule still exists. Every report has dozens of errors on build that all say:
"Type Telerik.Reporting.Data.Filter is not defined"
Format box looks like this, note the left side saying no rule. There are 20 reports in the solution, each with 1-10 formatting options per textbox, with a few dozen textboxes per report.
Is this a known issue? Is there a way I can recover all of the formatting work?
I have some new reports to make, and have converted the project from VS 2008 to VS 2010, no errors reported. Also installed Q1 2013 Telerik reporting this morning, no errors in the upgrade process.
Every existing format is now blank for the rule, though the rule still exists. Every report has dozens of errors on build that all say:
"Type Telerik.Reporting.Data.Filter is not defined"
Format box looks like this, note the left side saying no rule. There are 20 reports in the solution, each with 1-10 formatting options per textbox, with a few dozen textboxes per report.
Is this a known issue? Is there a way I can recover all of the formatting work?
7 Answers, 1 is accepted
0
Joel
Top achievements
Rank 2
answered on 21 Feb 2013, 06:18 PM
Search and replace in the project solved it.
Find
Telerik.Reporting.Data.Filter
Replace
Telerik.Reporting.Filter
Also needed:
Find
Telerik.Reporting.Data.Grouping
Replace
Telerik.Reporting.Grouping
Find
Telerik.Reporting.Data.Filter
Replace
Telerik.Reporting.Filter
Also needed:
Find
Telerik.Reporting.Data.Grouping
Replace
Telerik.Reporting.Grouping
0
Mark
Top achievements
Rank 1
answered on 26 Feb 2013, 05:58 AM
You are a legend! - also had to replace Telerik.Reporting.Data.Sorting with Telerik.Reporting.Sorting
Thanks for the method!
Pity the Telerik upgrade wizard missed this one...
Thanks for the method!
Pity the Telerik upgrade wizard missed this one...
0
Dennis
Top achievements
Rank 2
answered on 16 Mar 2013, 05:55 PM
Joel & Mark --
Gentlemen, appreciate the forum thread.
Just ran into this issue myself. It was great to have a forum with
the steps to correct already in place...
- Dennis
Gentlemen, appreciate the forum thread.
Just ran into this issue myself. It was great to have a forum with
the steps to correct already in place...
- Dennis
0
Bob
Top achievements
Rank 1
answered on 26 Mar 2013, 09:06 PM
...and we can also add Telerik.Reporting.Data.SortDirection to be replaced with Telerik.Reporting.SortDirection if you have any occurences in your report that overrides the ascending default for sorting.
0
Dennis
Top achievements
Rank 2
answered on 28 Mar 2013, 07:25 PM
Bob --
Thanks for the SortDirection addition. Ran into that one today.
Replace = Telerik.Reporting.Data.SortDirection
With = Telerik.Reporting.SortDirection
Here is one I haven't found the replacement for....
Me.Group1.Bookmark = Nothing
The error is...
Error 44 'Bookmark' is not a member of 'Telerik.Reporting.Group'.
There is a BookMarkId property and that will get it to compile but not sure what Telerik did with Bookmark.
TO TELERIK --
We like your products but this is a serious quality control issue. Your Reporting Upgrade Wizard should handle
the replacement of these "obsolete" types. After all, the "designer" files are generated by the Telerik Reporting
product and are not written by the developer.
Sincerely,
Dennis
Thanks for the SortDirection addition. Ran into that one today.
Replace = Telerik.Reporting.Data.SortDirection
With = Telerik.Reporting.SortDirection
Here is one I haven't found the replacement for....
Me.Group1.Bookmark = Nothing
The error is...
Error 44 'Bookmark' is not a member of 'Telerik.Reporting.Group'.
There is a BookMarkId property and that will get it to compile but not sure what Telerik did with Bookmark.
TO TELERIK --
We like your products but this is a serious quality control issue. Your Reporting Upgrade Wizard should handle
the replacement of these "obsolete" types. After all, the "designer" files are generated by the Telerik Reporting
product and are not written by the developer.
Sincerely,
Dennis
0
Bob
Top achievements
Rank 1
answered on 28 Mar 2013, 07:58 PM
Dennis,
I also ran into the Bookmark issue as well. I only had 6 (or so) occurrences of this and just deleted them. However, I agree with your statements regarding conversions and hope that Telerik addresses this issue.
Bob
I also ran into the Bookmark issue as well. I only had 6 (or so) occurrences of this and just deleted them. However, I agree with your statements regarding conversions and hope that Telerik addresses this issue.
Bob
0
Juan Alchourron
Top achievements
Rank 1
answered on 05 Sep 2013, 03:18 PM
Thanks a lot !
Juan
Juan