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.

Topics - merabi

Pages: [1]
1
Discussion | Обсуждение / Report rendering is slow
« on: October 18, 2023, 12:10:43 PM »
Hi Alex.
I have report that contains many cells. When I Call preview it takes too long for rendering report. Datasource contains >600 rows. For rendering 18 pages it took about 1 minute. Is it possible somehow to make rendering process fast?
I have attached report file
LimeReport version 1.7.5

2
Discussion | Обсуждение / How to set PDF file export directory
« on: January 18, 2023, 03:07:50 PM »
Hi Alex.
I have some questions about exporting PDF file from report.
  • When I press "Print To PDF" button on toolbar there appears save file dialog. This dialog always points to folder where the program is installed (see attached image). So my question is how can I specify the start folder for this dialog programmatically?
  • When I save PDF file in different folder then initially selected and if I try save PDF file again without closing report it does not remember what folder I had chosen when I saved previously.
  • Usually save file dialog title is "Save As" but when saving report in PDF there is "PDF file name" which does not make sense.
Thanks.

3
Hi Alex.
I have encountered a problem when printing report on the printer. supose I have a report with 10 pages. When I try to print 10th page nothing printed at all and there is no signs that something has to be printed. when i check the printer there is not showing my document in the print queue.
If I specify first page to print it is printed correctly. there is no problem also when i try to print entire report. problem is occuring only if I specify other pages to print.
I'm using version 1.5.23 but this problem persists also in version 1.5.30

P.S It will be good if you add CTRL+P shortcut to print report on the printer.

4
Discussion | Обсуждение / How to elide Text
« on: January 18, 2020, 05:49:00 PM »
Hi Alex.
I need to elide text in TextItem. How can I do it?

5
Discussion | Обсуждение / Some Features Request
« on: December 04, 2019, 06:37:33 PM »
Hi Alex.
I need two new feature if posible.
1. Can you add some function to hide 'save to file' action from report preview toolbar so end user can't be able to save report xml to file.
2. When user clicks to 'print to pdf' action on report preview toolbar the save file dialog is shown. In this dialog file name is empty. Can you Provide some property or function to set file name of saved pdf file programaticaly.

6
Discussion | Обсуждение / print on multiple printers
« on: November 07, 2019, 10:04:34 AM »
Hi Alex.
Can you show me example how to print on multiple printers?
Code: [Select]
bool printReport(QMap<QString, QPrinter*> printers, bool printToAllPrinters = false);I don't understand what should I pass as a key in Qmap

7
Discussion | Обсуждение / Problem with sum function in DataBand
« on: September 14, 2019, 10:09:36 AM »
Hi Alex.
If I use sum function in databand then limereport crashes on preview.
my code is shown below:
Code: [Select]
$S{SUM($D{datasource.დანაკლისი}, "DataBand1")}

8
Hi.
Using lime reports I have noticed some points which does not affect the achieved result but can improve user experience. I hope they can be included in future releases of LimeReport.

  • In preview dialog there is an zoom percentage Combo Box. The problem is that its value does not correspond real zoom level of report. For example the report of size A4 in 100% is shown much bigger then real A4 paper size is.
  • In design mode there is an item alignment buttons on the toolbar. They help align items on the report. It will be useful if we have option to align relative to page margins.
  • If i use group functions nested in number format and set Auto Height on then resulting height is much bigger then is necessary to show the result.
This is the typical code with the issue described in third item:
Code: [Select]
$S{numberFormat($S{SUM($D{datasource.დავალიანება}, "DataBand1")}, "f", 2, "")}  I have attached example images showing differences.

9
Hi. In Release 1.5.1 (master branch) there is a new toolbar named 'toolBar_2'. You can show it clicking right button on existing toolbar.
From this toolbar you can drag text item to the report. I think you accidentally forget remove this toolbar

10
Discussion | Обсуждение / Hide barcode text
« on: December 29, 2018, 01:23:42 PM »
Hi. I'm using CODE128 type barcode in my report. it is rendered normally on report but the text label below the rendered barcode is small. how can I  increase size of the text and if possible remove the text label?

11
Discussion | Обсуждение / Problem With SUM Function
« on: November 24, 2018, 12:14:43 PM »
Hello.
i am having problem using sum function. when column name in my data source contains space sum function doesn't sum column values and gives syntax error.
my data source is QTableModel based.
this is the script in table footer cell:
Code: [Select]
$S{numberFormat($S{ SUM("$D{datasource.თვითღ ფასი}","DataBand1") }, "f", 2, "")}
please let me know how to fix this problem.
p.s. in the table rows values are shown properly. only sum function has problem.
this is the script in table data cell:
Code: [Select]
$S{numberFormat($D{datasource.თვითღ ფასი}, "f", 2, "")}

Pages: [1]