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 - merabi

Pages: 1 [2]
16
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.

17
thanks.

18
yes. I'm not using editable mode

19
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

20
Discussion | Обсуждение / Re: Hide barcode text
« on: January 03, 2019, 11:29:23 AM »
thank you for your effort. hiding text is sufficient for us

21
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?

22
Discussion | Обсуждение / Re: Problem With SUM Function
« on: December 01, 2018, 10:44:20 AM »
Hi, now everything works as expected.
The reason we have such column names is that we are passing QTableModel as a data source.
Sometimes column names are large and contains multiple words. So they are shortened to achieve convenient look in a QTableView.
Thank you for your effort.

23
Discussion | Обсуждение / Re: Problem With SUM Function
« on: November 30, 2018, 12:59:20 PM »
Hi, this one is working, but when there is a space after dot script doesn't work.
For Example:
Code: [Select]
$S{numberFormat($S{SUM("$D{datasource.შესყ. ფასი}", "DataBand1")}, "f", 3, "")}Thank you for a quick response.

24
Discussion | Обсуждение / Re: Problem With SUM Function
« on: November 29, 2018, 10:31:34 AM »
Hi, our problem has resolved partially. In general your solution works except when column name contains dot.
For Example:
Code: [Select]
$S{numberFormat($S{SUM("$D{datasource.შესყ.ფასი}", "DataBand1")}, "f", 3, "")}doesn't work.

25
Discussion | Обсуждение / Re: Problem With SUM Function
« on: November 24, 2018, 12:19:04 PM »
Added Image Showing The Problem

26
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 [2]