Reporting tool #3665
Replies: 7 comments 5 replies
-
Have you looked at Bold Reports? |
Beta Was this translation helpful? Give feedback.
-
I'm reviewing right now, but I haven't gotten it work yet with a business object. Have you gotten to work in your organization?
…________________________________
From: Dan Martin ***@***.***>
Sent: Wednesday, January 31, 2024 5:09 AM
To: MarimerLLC/csla ***@***.***>
Cc: Kevin Cabral ***@***.***>; Author ***@***.***>
Subject: Re: [MarimerLLC/csla] Reporting tool (Discussion #3665)
Have you looked at Bold Reports?
—
Reply to this email directly, view it on GitHub<#3665 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AGJTVDVUQ2E7N3VE6X6SQ5TYRIJ33AVCNFSM6AAAAABCOGEG5SVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DGMJXGQ3DS>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
You can also look at Telerik reporting |
Beta Was this translation helpful? Give feedback.
-
I just opened a support ticket with boldReport to determine the business object connection issue. I'm using blazor server .net with csla. I looked at Telerik, but their business object solution actually uses an excel in their demo, so I am not sure if it works with business objects.
Have a nice day.
Kevin
https://rb.gy/syiuf
…________________________________
From: Dan Martin ***@***.***>
Sent: Wednesday, January 31, 2024 5:46 AM
To: MarimerLLC/csla ***@***.***>
Cc: Kevin Cabral ***@***.***>; Author ***@***.***>
Subject: Re: [MarimerLLC/csla] Reporting tool (Discussion #3665)
Nothing in production but have got in working in WPF and hosting a WPF control in Winforms using CSLA 7. I'm using RDLC reports and was looking for a way to migrate to current versions of .NET from 4.8.
—
Reply to this email directly, view it on GitHub<#3665 (reply in thread)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AGJTVDXXWKCHJ2BX76YCPO3YRIOJZAVCNFSM6AAAAABCOGEG5SVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DGMJXHA3DS>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
my difficulty is with the binding. I haven't been able to get data to be displayed in an RDLC report. The report shows up sans data.
Have a nice day.
Kevin
https://rb.gy/syiuf
…________________________________
From: Dan Martin ***@***.***>
Sent: Wednesday, January 31, 2024 10:26 AM
To: MarimerLLC/csla ***@***.***>
Cc: Kevin Cabral ***@***.***>; Author ***@***.***>
Subject: Re: [MarimerLLC/csla] Reporting tool (Discussion #3665)
ReportViewer was not migrated to the new .NET. I think they want you to use their BI platform. Bold Reports has a control for most UI apart from Winforms but you can embed the WPF version. It lets you use your RDL/RDLC reports. There is a paid license or free cuminity version for small businesses. I've only tested that I can make it work so not sure how it matches up to report viewer.
—
Reply to this email directly, view it on GitHub<#3665 (reply in thread)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AGJTVDTNP47RMOLP2Y56ZMLYRJPCBAVCNFSM6AAAAABCOGEG5SVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DGMRRHEZDM>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
In a blazor application I am unable to get it to work.
Here is my assignment in public class BoldReportsAPIController
reportOption.ReportModel.DataSources.Add(new ReportDataSource { Name = "ProposalReport", Value = ProductList.GetData() });
Here is the RDLC declaration:
<rd:DataSetInfo>
<rd:DataSetName>ReportExplore1</rd:DataSetName>
<rd:ObjectDataSourceType>DataSource1.ProductList, ReportExplore1, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</rd:ObjectDataSourceType>
<rd:TableName>ProposalReport</rd:TableName>
</rd:DataSetInfo>
Kevin
https://rb.gy/syiuf
…________________________________
From: Dan Martin ***@***.***>
Sent: Wednesday, January 31, 2024 11:13 AM
To: MarimerLLC/csla ***@***.***>
Cc: Kevin Cabral ***@***.***>; Author ***@***.***>
Subject: Re: [MarimerLLC/csla] Reporting tool (Discussion #3665)
Looking at the docs<https://help.boldreports.com/embedded-reporting/blazor-reporting/report-viewer/rdlc-report/> you set the binding in OnInitReportOptions method in your report controller.
Load your CSLA objects, I always use a ReadOnlyList and add your datasource
reportOption.ReportModel.DataSources.Add(new BoldReports.Web.ReportDataSource {Name="MyReportDataSourceName", Value=MyReadonlyList});
Object has to be a list and the name has to match the datasource name in th report. Looks similar to what I did in WPF except I was adding an array or data sources as had serveral in the report.
—
Reply to this email directly, view it on GitHub<#3665 (reply in thread)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AGJTVDS77ST4XDLHGOCZGGTYRJURZAVCNFSM6AAAAABCOGEG5SVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DGMRSGU4TM>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
We have used DevExpress reporting for years. Try it, it works great for us but it is expensive! |
Beta Was this translation helpful? Give feedback.
-
Hello,
I am looking for a reporting tool that will work on Blazor and CSLA. Some of the reporting tools I've looked at don't use the DI container, don't use business objects as the source, so I was wondering what others are using. Since this is a SaaS Azure hosted solution, access to the database by anything other than CSLA is verboten. Any suggestions would be greatly appreciated.
Beta Was this translation helpful? Give feedback.
All reactions