91
News: LimeReport new version 1.5 has been released
Вышла новая версия LimeReport 1.5
92
Discussion | Обсуждение / how setting of boarder line dynamically
« Last post by solomon78 on December 03, 2024, 01:47:01 am »How to disable or enable boarder line of of Text_Item dynamically base on certainin conditions, if retrieve data of Text_Item is null boarder line should not appear but if not null boarder should show. thank
93
Discussion | Обсуждение / Re: Lime Report line numbering
« Last post by solomon78 on November 26, 2024, 10:13:45 pm » using PARTITION BY and ROW_NUMBER() hard coding will help on line number
94
Discussion | Обсуждение / Re: How to limit number of rows
« Last post by solomon78 on November 26, 2024, 10:08:20 pm »you need to select *from TableA where ${TableB.id} = TableA.id and ${TableB.mClass} = TableA.KClass; such condition will help you to filter and meet you desire
95
Discussion | Обсуждение / How to limit number of rows
« Last post by Mohammad on October 21, 2024, 08:58:08 pm »Hi everyone
I want to limit number of rows in each page
actually, I have a DataBand and I added a datasource with 50 rows to it.
How can I change setting to show only 5 rows in each page from my datasource?
I want to limit number of rows in each page
actually, I have a DataBand and I added a datasource with 50 rows to it.
How can I change setting to show only 5 rows in each page from my datasource?
96
Discussion | Обсуждение / Re: Вопросы новичка
« Last post by Paul on September 08, 2024, 12:09:48 pm »How to split data into columns vertically?
Have datasource with 5-10 items and want to split it to 2 columns verticaly:
1 4
2 5
3 6
But receive
1
2
3
4
5
6
columnFillDirection = Vertical
If I select VerticalUniform that recieve just:
4
5
6
Have datasource with 5-10 items and want to split it to 2 columns verticaly:
1 4
2 5
3 6
But receive
1
2
3
4
5
6
columnFillDirection = Vertical
If I select VerticalUniform that recieve just:
4
5
6
97
Discussion | Обсуждение / Re: QTableWidget Model (CellWidget) And LimeReport problem
« Last post by Subst on August 20, 2024, 09:11:57 am »Hi!
Can I see your LR report file (.lrxml) ?
Can I see your LR report file (.lrxml) ?
98
Discussion | Обсуждение / QTableWidget Model (CellWidget) And LimeReport problem
« Last post by huntrashmi on August 20, 2024, 06:57:38 am »Hi All ,
I Have A problem With LimeReport Cannot Read Cell Widgets data inside QTableWidget Model
is There Any way Casting this data , so Limereport can read it ?
i mean some Columns Are Spinbox , And QTextEdit ~~^^
I Have A problem With LimeReport Cannot Read Cell Widgets data inside QTableWidget Model
is There Any way Casting this data , so Limereport can read it ?
i mean some Columns Are Spinbox , And QTextEdit ~~^^
Code: [Select]
QDoubleSpinBox *spinbox=new QDoubleSpinBox(ui->tableWidget);
ui->tableWidget->setCellWidget( ui->tableWidget->rowCount() - 1, 2, spinbox );
LimeReport::ReportEngine *report=new LimeReport::ReportEngine(this);
auto model=ui->tableWidget->model();
report->dataManager()->addModel("tablemodel",model,false);it shows cell widget columns empty ...99
Discussion | Обсуждение / Re: Bugs & Requests | Ошибки и пожелания
« Last post by Leeroy77 on August 06, 2024, 08:20:49 am »Arin Alex, благодарю, пересобрал LimeReport, теперь использую bool setDefaultExportDir(const QString& dirname).
100