Welcome, Guest. Please login or register.
Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - corveejet

Pages: [1]
1
Hello everyone,

It's possible to create objects dynamically in script like text object in databand ? I would like create tableau dynamically based on database.

Regards.

2
Discussion | Обсуждение / Re: Wrong behavior fit page
« on: June 14, 2021, 06:41:56 PM »
Subst,

Yes it's fix. Thanks you both !  ;D

3
Discussion | Обсуждение / Re: Wrong behavior fit page
« on: June 07, 2021, 11:21:48 AM »
Hi Subst,

Sorry for the response time...

Yes exactly.

4
Discussion | Обсуждение / Wrong behavior fit page
« on: May 31, 2021, 01:01:45 PM »
Hello everyone!

I notice that fitPage function have a wrong behavior. When you are in the page >3, sometimes when you click on fitPage the current page change.
You can watch this behavior in the exemple demo2. Put on page 3 or 4, click many times on fitpage and the page change at 5 in my case.

Does anyone have this behavior too ? How can fix that in code ?

regards.

5
Discussion | Обсуждение / Re: Multiple Report in once
« on: April 28, 2021, 11:37:50 AM »
Arin Alex, thank you for the quick answer ;) I look forward to see result  ;D
Great work by the way!

6
Discussion | Обсуждение / Multiple Report in once
« on: April 26, 2021, 11:20:59 AM »
Hello everyone !

My topic is similar with the topic of alexela "TOPIC: ДОБАВЛЕНИЕ НЕСКОЛЬКИХ REPORT В ОБЩИЙ PREVIEWREPORT", but with some differences.

I want create a report which is composed of several reports (.lrxml). I know that i make several pages into one report and copy/paste my several .lxrml into them.

My questions is:
  - Can do what with better way ?
  - it's possible to repeat a page (.lrxml) many times with different data.
For example i have 3 .lxrml. intro.lxrml, client.lxrml, end.lrxml. I would something like this. The first pages is intro.lrxml and repeat client.lrxml 3 times (3 clients) and finally include end.lrxml for the last pages.

Regards,

7
Arin Alex, ok thank you very much.

This Topic is closed now.  ;)

8
Arin Alex, Thanks.

It's work perfectly.

Just another question, i'm not very good in js but is there a better way to connect each object to different function?

Code: [Select]
Reportpage1_GroupBandHeader24.beforeRender.connect(BFP_heading1);
Reportpage1_GroupBandHeader25.beforeRender.connect(BFP_heading2);

function BFP_heading1()
{
Reportpage1_GroupBandHeader24.isVisible = (getField("recipe.heading1") != "");
}

function BFP_heading2()
{
Reportpage1_GroupBandHeader25.isVisible = (getField("recipe.heading2") != "");
}

I would like somethings like this, but it doesn't work.

Code: [Select]
Reportpage1_GroupBandHeader24.beforeRender.connect(BFP(Reportpage1_GroupBandHeader24 "recipe.heading1"));

function BFP(object, header)
{
object.isVisible = (getField(header) != "");
}

regards.

9
thanks for your answer,

I have already put that. I not describe all. I arrived to hide a single goupbandheader (1 groupbandheader connected to band) but i not arrive to hide several groupbandheader (groupbandheader connect to another which is connect to band for example) or i have a strange behavior with a groupheader hide and other not. I put my lrxml in attachments if you want.

10
Discussion | Обсуждение / How use condition in GroupBandHeader
« on: February 03, 2021, 12:44:11 PM »
Hi everyone,

My problem is that: i want to hide a GroupHeaderBand (which contains different shapes and a Text label) depending on if my datasource is empty.

I try to make in condition fields of GroupHeaderBand :
Code: [Select]
$S{
THIS.isVisible = true
if($D{recipe.heading5} === "")
{
    THIS.isVisible = false
}
}

but no success.

Can you help me please ?

Regards.

Pages: [1]