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 - Arin Alex

Pages: 1 ... 4 5 [6] 7 8 ... 67
76
Discussion | Обсуждение / Re: Вопросы новичка
« on: August 30, 2021, 12:26:09 PM »
Vermilion, У вас ошибочка в скрипт закралась :)

Reportpage1.beforeRender.connect(ReportPage1BeforeRender)
function ReportPage1BeforeRender(){
    if ( getVariable("#PAGE") != 1 ){
       Reportpage1_ShapeItem1.isVisible = false;
       ReportPage1_PageFooter1.setItemHeight(1);
Должно быть
       Reportpage1_PageFooter1.setItemHeight(1)
    }
}

Если исправить будет вот так

77
Discussion | Обсуждение / Re: Вопросы новичка
« on: August 29, 2021, 11:38:59 PM »
Vermilion, Приветствую.
Проверил ваш скрипт у себя. Вроде на первый взгляд работает как вы и хотите.   
На приложенном скрине видно, что на второй странице данные заняли больше места чем на первой
Quote
У pagefooter установлен признак автоматической высоты
Для футера не очень хорошо работает, дойдут руки уберу это свойство из футера :)   

78
Приветствую!
Создать xml подсунуть генератору.
API по созданию шаблона из кода на данный момент нет.

79
Hi!
You can do something like this:

$S{
Borders = {
  "top":1,
  "bottom":2,
  "left":4,
  "right":8,   
  "all": 15
}

if (borderOn){
   THIS.borders = Borders.top // it could be THIS.borders = Borders.all or THIS.borders = Borders.top + Borders.bottom
} else {
   THIS.borders = 0
}
}

80
Можно передать через переменную.
А если интересно разобраться с моделью то можно глянуть исходники demo_r1 

81
atom63, К сожалению, на данный момент, совершенно нет времени заниматься LimeReport :( Как появится свободная минутка гляну, что там с zint.

82
Discussion | Обсуждение / Re: LimeReport Ram Usage Bug
« on: May 26, 2021, 10:27:44 AM »
Proton Phoenix, Hi I've fixed the memory leak and pushed the changes to github. You can check it.

83
Discussion | Обсуждение / Re: ChartItem
« on: April 28, 2021, 10:01:30 AM »
Приветствую! На данный момент нет :) Но можно прикрутить настройки, когда появится время.

84
Discussion | Обсуждение / Re: Multiple Report in once
« on: April 28, 2021, 09:59:12 AM »
Quote
I want create a report which is composed of several reports (.lrxml).
Hi! At the moment it`s not possible but I will think about it :)

85
alexyuisme, I think I have fixed the issue :) You can check it.

86
Пофиксил :) можно проверять

87
alexyuisme, Hi. You can try to switch off the form designer. Compile limereport with CONFIG+=no_formdesigner. 
It seems I found where limereport tries to load dlls from application dir. I will fix it soon. 

88
Hi!
Could you explain the issue in more detail? Which OS, compiler, limreport and Qt version do you use?
I have checked the next code:
Code: [Select]
    QTime start = QTime::currentTime();
    report = new LimeReport::ReportEngine(this);
    qDebug() << start.msecsTo(QTime::currentTime());
in my demo_r1 sample project and got 528 msec in debug mode and 268 in the release.   

89
alexela, Прикрутил возможность перемешивать страницы. Рисуем 2 страницы. Второй выставляем mixWithPriorPage=true. Если количество страниц совпадает будет произведено перемешивание.

90
alexela, Подумал тут на досуге :) В теории можно миксануть страницы если их количество совпадает. Рендерим сначала все первые страницы потом все вторые и потом перемешиваем.   

Pages: 1 ... 4 5 [6] 7 8 ... 67