Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Is there a tutorial or description of how to create custom Gemini reports?

reporting

I would like to create a custom report to use with Gemini. is there some documentation on how to do this?

Thanks.

Pawnder
· 1
Pawnder
Replies (10)
helpful
0
not helpful

Yes, we have a sample C# project and a document here: http://www.geminiplatform.com/downloads/v40/CounterSoftGeminiReportSamplev401.zip


Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

This sample does not work with version v3.6.3 or v3.7.1 as I only see a PDF link after selecting the report from the dropdown.

Do you have any sample for these versions (preferably v3.6.3 Build 2590) ?

thanks


netguy
· 1
netguy
helpful
0
not helpful

It should work with 3.7 is you replace the references to your Gemini 3.7 DLLs.


Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

Thanks. It's working now.

Is there any stored procedure I can re-use to get the data for the same grid showing all the issues in decreasing Last Revised order after a project is selected?


netguy
· 1
netguy
helpful
0
not helpful

Unfortunately no. We use NHibernate to do SQL execution. But if you select from gemini_issuesview you'll get what you are after.


Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

I am trying to bind the IssueEN[] array to the grid. IssueEN is an array of the IssueEN objects. The IssueEN[] array is populated by the result from a database view. The grid is showing a list of UnCompleted issues.

Do you have any sample code to bind the IssueEN[] array to the grid to display the different properties of IssueEN object (e.g. Summary, revised, issue number)?

thanks


netguy
· 1
netguy
helpful
0
not helpful

Do you have sample code to implement your sample report "Issue Age report"?

That report has fields similar to the report I am trying to work on.


netguy
· 1
netguy
helpful
0
not helpful

Add a reference to the CounterSoft.Gemini.Presenter and use the CounterSoft.Gemini.Presenter.Helpers.ReportsHelper.GetDataGrid method.


Mark Wing
· 9108
Mark Wing
helpful
0
not helpful

Is there any API documentation for Countersoft.Gemini.Logging? i want to log any errors to the Event LOg in my custom report application.

thanks


netguy
· 1
netguy
helpful
0
not helpful

Simply call CounterSoft.Gemini.Logging.DiagnosticsManager.EventLogException("error", exception);


Mark Wing
· 9108
Mark Wing