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

Recent Posts

Pages: [1] 2 3 ... 10
1
Discussion | Обсуждение / Re: how setting of boarder line dynamically
« Last post by Subst on December 05, 2024, 11:34:45 am »
Hi!
By using the script as the content of TextItem for example
Like this

Code: [Select]
$S{
  if (your_condition)
    THIS.borders=15;
  "simple_text";
  }

the Enum of borders is

Code: [Select]
enum BorderSide {
  NoLine = 0,
  TopLine = 1,
  BottomLine = 2,
  LeftLine = 4,
  RightLine = 8,
  AllLines = 15
  };
2
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
3
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
4
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
5
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?
6
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


7
Hi!
Can I see your LR report file (.lrxml) ?
8
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 ~~^^

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 ...
9
Arin Alex, благодарю, пересобрал LimeReport, теперь использую bool setDefaultExportDir(const QString& dirname).
10
упс... так у Image вроде есть Property
Code: [Select]
scaleон же
Code: [Select]
Масштабировать
Pages: [1] 2 3 ... 10