Hi,
We are displaying report using HTML5 report viewer in our angularjs application (calling $("#container").telerik_ReportViewer(options)). When the user navigates to another report or another page the report generation and api calls(to get instances and documents) should be cancelled. Is there any way to do it?
Regards,
Majar
Dear all
I have a report that fill with a Sql Data Source , but additionally need at runtime pass the value of the one textbox to a property of ReportParameter.
Im working in VB , please your urgent support
Regards
William
Hello there. Happy Holidays.
I am currently using your tools for reporting. Great job and thanks a lot to all of you over there.
I have a client who would like to check some boxes in the PDF and save his copy on his post. Is your reporting tools can make editable PDFs such as checkboxes or fillable fields? If no, what are the possibilities of producing such a document?
So I've got a datasource that gives me a startdate and an enddate value. I was wondering is there a way for me to make a table that essentially goes:
+-------------------+------+------+------+
| Date | Col1 | Col2 | Col3 |
+-------------------+------+------+------+
| 10th January 2018 | | | |
| 11th January 2018 | | | |
| 12th January 2018 | | | |
+-------------------+------+------+------+
For example?
Hi,
We are generating a report using a console application using SDK. As the data source, we are using CSV files. Sometimes these fields give out errors due to various reasons (not properly formatted, null value etc..) When errors occurred the output pdf file contains these errors around a red box giving more error details.
Is there a way to not showing this red error message box because most of the fields are not important, so not showing them if there is an error is ok for us. Can off these error messages in output pdf done using the SDK?
Thank you
I'm trying to do a report with one table composed with 2 rows of diferent information. Table seems to get the correct values for both rows but after creating the render pdf file all the columns have the same values.
There's the code I use:
ObjectDataSource dataSource = new ObjectDataSource();
dataSource.DataSource = typeof(ReportInformation);
dataSource.DataMember = "Member";
_Table.DataSource = dataSource;
// -------------------- First I configure the column header ----------------------------- //
ColumnsDataModel columns = GetColumnsByUser();
int numFields = columns.Count;
for (int ii = 0; ii < numFields; ii++)
{
ColumnsInformation column = columns.Fields[ii];
_Table.Body.Columns.Add(new TableBodyColumn(Unit.Pixel(column.Width)));
TableGroup tableGroup = new TableGroup();
TextBox tb = new TextBox()
{
Value = columns.Fields[ii].Name,
Size = new SizeU(Unit.Cm(6.0), Unit.Cm(1.0))
};
tableGroup.ReportItem = tb;
_Table.ColumnGroups.Add(tableGroup);
_Table.Items.Add(tb);
}
TableGroup rowGroup = new TableGroup();
// ----------------- Then the table body (Rows) ------------------- //
for (int jj = 0; jj <rows.Count ; jj++)
{
rowGroup.Groupings.Add(new Grouping(null));
_Table.RowGroups.Add(rowGroup);
_Table.Body.Rows.Add(new TableBodyRow(Unit.Cm(0.6)));
for (int ii = 0; ii < numFields; ii++)
{
TextBox tb = new TextBox();
tb.Size = new SizeU(Unit.Cm(6.0), Unit.Cm(0.6));
tb.Value = cell_value;
_Table.Items.Add(tb);
_Table.Body.SetCellContent(jj, ii, tb);
}
}
}
Strangelly If I change that "jj" in SetCellContent for a 0 it displays one row twice and "jj" displays the other one twice
Best regards
Hi,
we are evaluating if we can use your reporting system for our software.
As we are printing many labels directly to label printers (e.g. cab a4+ 200 dpi) we have to know how do you transfer the barcodes of reports to the printer. Are barcodes directly sent using barcode fonts, or are barcodes preprocessed and transfered as images to the printer? Our experience has shown, that if barcodes are sent as image to the barcode printers, that some barcode readers (especially old ones) are not able to read the barcodes.
Thanks!
I have two project used Telerik Reportting and host on one computer. When I export report then show error.