Search found 45 matches

by Mateus Garrido Kern
Thu Aug 27, 2020 2:15 pm
Forum: Stimulsoft Reports.JS
Topic: How can I count registers from a Data Source?
Replies: 10
Views: 3942

Re: How can I count registers from a Data Source?

Follow the example of the report in attachment.

Thank you.
by Mateus Garrido Kern
Thu Aug 27, 2020 2:13 pm
Forum: Stimulsoft Reports.JS
Topic: How can I count registers from a Data Source?
Replies: 10
Views: 3942

Re: How can I count registers from a Data Source?

Basically I want to show the databand when there is no record, and when there is more than one record do not show the databand.
by Mateus Garrido Kern
Thu Aug 27, 2020 2:04 pm
Forum: Stimulsoft Reports.JS
Topic: How can I count registers from a Data Source?
Replies: 10
Views: 3942

How can I count registers from a Data Source?

Hello,

I did a report with count registers, but de function not working.

I used:

Code: Select all

{Totals.Count(root_retorno_livros.lancamentos)}
How can I count the registers from my Data Source?

In the attachments I show how my data structure is and how I am using the count
by Mateus Garrido Kern
Wed Aug 26, 2020 2:59 pm
Forum: Stimulsoft Reports.JS
Topic: Errors in the async merged report
Replies: 12
Views: 4243

Re: Errors in the async merged report

Hello, I already use the renderAsync method, but I also use the merge between reports, where I intend to merge it only when the user wishes, follow the code: import { Component, OnInit } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import { environment } from '../../../../...
by Mateus Garrido Kern
Wed Aug 26, 2020 2:24 pm
Forum: Stimulsoft Reports.JS
Topic: There is no matching overloaded method for 'Replace(String,String,Number)'
Replies: 3
Views: 1293

Re: There is no matching overloaded method for 'Replace(String,String,Number)'

Hello,

I solved this problem using 'ToString()' function, like this:
{Replace(root_retorno_abertura.texto,"{NumeroFolhas}",ToString(TotalPageCount))}
Thank you
by Mateus Garrido Kern
Wed Aug 26, 2020 1:58 pm
Forum: Stimulsoft Reports.JS
Topic: There is no matching overloaded method for 'Replace(String,String,Number)'
Replies: 3
Views: 1293

There is no matching overloaded method for 'Replace(String,String,Number)'

Hi, I had this error when trying to perform a replace on a string: Expression in Text property of 'Text29' can't be evaluated! Parser error: There is no matching overloaded method for 'Replace(String,String,Number)' And this is the Expression for the Text29: {Replace(root_retorno_abertura.texto,&quo...
by Mateus Garrido Kern
Mon Aug 24, 2020 12:38 pm
Forum: Stimulsoft Reports.JS
Topic: Errors in the async merged report
Replies: 12
Views: 4243

Re: Errors in the async merged report

Hello,

The answer I received is attached: "Screenshot_1.png".

It is about 3165067 request, and was answered on the August 04, 2020.

What is the Report's response function?

Thank you.
by Mateus Garrido Kern
Fri Aug 21, 2020 7:50 pm
Forum: Stimulsoft Reports.JS
Topic: Errors in the async merged report
Replies: 12
Views: 4243

Re: Errors in the async merged report

Hello, I received a response from Aleksey Andreyanov by email, written: "When you render the reports you are using async methods but don't wait for the end of the rendering. There are no rendered pages when you pass the report to the Viewer. You should get the report inside the response functio...
by Mateus Garrido Kern
Mon Jul 20, 2020 1:10 pm
Forum: Stimulsoft Reports.JS
Topic: Errors in the async merged report
Replies: 12
Views: 4243

Re: Errors in the async merged report

Hello, any solution to this problem?