Search found 14 matches

by gabrielw3n
Fri Sep 29, 2017 3:07 pm
Forum: Stimulsoft Reports.WEB
Topic: panel and datasource inside another datasource
Replies: 1
Views: 1108

panel and datasource inside another datasource

Hi. I'm trying to print a header and a datasource inside another datasource. https://imgur.com/a/coYSV What I want is: after the inside datasource is finished, comes immediately after it the other header. But the header is overlapping the datasource, like this: https://imgur.com/a/coYSV What I want ...
by gabrielw3n
Wed Sep 27, 2017 8:23 pm
Forum: Stimulsoft Reports.WEB
Topic: Problem generating a PDF
Replies: 1
Views: 1190

Problem generating a PDF

Hi. I'm following this example: https://www.stimulsoft.com/en/samples/js/export-report-to-pdf I'm trying to export a MRT file to PDF directly. So I downloaded the github example and when I access it, it works and bring all the data, everything fine. But when I try to load my own MRT file, which conn...
by gabrielw3n
Wed Sep 27, 2017 7:09 pm
Forum: Stimulsoft Reports.WEB
Topic: Display report directly in PDF
Replies: 7
Views: 5375

Re: Display report directly in PDF

Hi..

How can I do it using JS?
by gabrielw3n
Fri Sep 22, 2017 11:59 am
Forum: Stimulsoft Reports.WEB
Topic: Text beside databand is occupying a row
Replies: 1
Views: 1181

Text beside databand is occupying a row

Hello. I have a data-band beside a text, both on inside different panels. The image below shows the result: https://imgur.com/a/8I8i9 For some reason the text is occupying the height of a row in the data band. What I would like to do is show the data band normally and the text beside it, independent...
by gabrielw3n
Wed Sep 20, 2017 6:54 pm
Forum: Stimulsoft Reports.WEB
Topic: Second page of DataSource is blank
Replies: 1
Views: 1159

Second page of DataSource is blank

Hello.. I'm using Stimulsoft JS and I have a DataSource called 'dsSection' Inside this DataSource there is a subreport. Inside the subreport there is another DataSource called 'dsExams' which I'm showing the exams. Let's say the 'dsSection' Datasource is returning two lines. For each one of these li...
by gabrielw3n
Wed Sep 20, 2017 6:12 pm
Forum: Stimulsoft Reports.WEB
Topic: Get the current data source register number
Replies: 3
Views: 1944

Re: Get the current data source register number

Thank you so much! That's exactly what I was looking for.
by gabrielw3n
Tue Sep 19, 2017 8:28 pm
Forum: Stimulsoft Reports.WEB
Topic: Get the current data source register number
Replies: 3
Views: 1944

Get the current data source register number

Hello.

Please, how can I get the current data source register number?

I can get the total, but I also need the current.
by gabrielw3n
Tue Sep 19, 2017 7:29 pm
Forum: Stimulsoft Reports.WEB
Topic: Concatenate variable with LIKE clause
Replies: 1
Views: 1457

Concatenate variable with LIKE clause

Hello. Please, I would like to concatenate an "AND" clause based on a variable value but I'm getting errors because of the 'LIKE' and '%%'. This is what I'm doing: {occurrenceType == "M" ? " AND occurrence.fk_doc = " + doctor + "" : " AND patient.nameLIKE...
by gabrielw3n
Sat Sep 16, 2017 11:40 am
Forum: Stimulsoft Reports.WEB
Topic: How can I define a width for the DataBand?
Replies: 1
Views: 1442

How can I define a width for the DataBand?

Hi

Is there a way to define a width for the DataBand?

I don't want the Databand to occupy the whole width of the report, because I want to put something by it's side, like a text for example.
by gabrielw3n
Wed Sep 13, 2017 4:42 pm
Forum: Stimulsoft Reports.WEB
Topic: How to use a variable in the middle of an expression?
Replies: 1
Views: 1131

How to use a variable in the middle of an expression?

Hello. In my data source SQL Script, I would like to check if a variable is null and if it's not, then use the variable to complete a SQL query, something like this: SELECT (...) FROM (...) AND (...) {doctor != "" ? " AND (something.fk_doctor= {doctor}") : ""} so, 'doct...