Was working with http, for project generated using Reporting REST Service R3 2018 template.
When convert the project to use https (locally IIS Express using VS 2017), it stopped working...
What other changes need to be made?
Production env is in https...
Helo,
I have a problem with the group footer section. My objective is to stick it to the last row printed of a table in the detail section.
I have it configured to PrintAtBottom = false
On the page i have only too groups and in the detail i have a table.
When the table row is too height and it doen't fit in that page, the group footer section is printed always on bottom of the page, and i do not want that, i wanted it to be printed right below the last row of that table in that page.
I already play it around with the keeptogether and it didn't work.
Can somebody help me?
Thanks,
Nuno
Using Telerik HTML5 Report Viewer Page R3 2018.
When designing the report in the designer and viewing it on the html page, the tables are fine. See capture1.png.
But when downloading the page to pdf, the tables get clipped horizontally so that only half the columns show on one page and the remaining get pushed to a subsequent page. So the number of pages increase in the printout. See capture2.png and capture3.png.
Hi,
I am new to Telerik report design, I am a developer, I have to modify an existing report, however, when I open the .cs file, I get the error page. I am not sure if it is due to license. Is there a way to modify the design ? Thanks for your support.
Regards,
Sathish
I have created a report where I have several style rules. These style rules are created on style selector and type selector. I have also several exported style rules using the styles used in the report. For example, in the textboxes with style name 'main' have background color as yellow and in my exported style rule the background color is blue for the style name 'main'. In a console application, I am binding these external styles using the following code.
Report report = (Report)xmlSerializer.Deserialize(xmlReader);
ExternalStyleSheet ess =
new
ExternalStyleSheet(
this
.themeFilePath);
report.ExternalStyleSheets.Add(ess);
The issue is even though I add the external style sheet the background color is not changing. But if I delete the style rule from the / file the external style sheet is applied. Is external style sheets does not override the styles that are already defined in the project? If not is there a way to override styles that are already defined in the design?
Thank you
Hi everyone,
I am trying to convert m DevExpress reports into Telerik. I have the code written in C# for Devexpress and having confusion on few of the functions as I am unable to find the Telerik equivalents of those:
onCustomCallback
clientInstanceName
showLoadingPanel
These three functions/methods are devexpress methods. Can anyone tell me if there is any Telerik equivalent methods which does the same functionality?
Thank You
Mashfiqul
Hi,
I am pretty new to Telerik Reporting and I am using C# WPF. I have set a datatable to the DataSource of Report. The datatable is generated correctly with all rows from specified DB. But it is not displayed in ReportViewer. Below is my code snippet. Please advise.
Telerik.Reporting.Report myReport = new Telerik.Reporting.Report();
string selectCommand = @"SELECT * FROM Angle";
string connectionString = @"Data Source=IndianSections.db3";
using (var connection = new SQLiteConnection(connectionString))
{
using(var command = new SQLiteCommand(connection))
{
connection.Open();
command.CommandText = selectCommand;
using (var reader = command.ExecuteReader())
{
SQLiteDataAdapter dataAdapter = new SQLiteDataAdapter(selectCommand, connectionString);
DataTable dataTable = new DataTable();
dataTable.Load(reader);
//dataAdapter.Fill(dataTable);
var objectDataSource = new Telerik.Reporting.ObjectDataSource();
objectDataSource.DataSource = dataTable;
myReport.DataSource = objectDataSource;
var reportSource = new Telerik.Reporting.InstanceReportSource();
reportSource.ReportDocument = myReport;
this.reportViewer.ReportSource = (reportSource as ReportSource);
this.reportViewer.RefreshReport();
}
// connection.Close();
}
}
Hello All,
I have my table of data, but above my table, I want to add two rows that will contain the report title, as well as the date rendered information. This information extends beyond what would fit into just one cell, so I'd like to merge the adjacent cells so everything is visible. I don't want to use a header for this information.
Thanks for your help.
Travis
Hi,
I have been trying to reduce the checkbox width (Please refer to the attached image) by setting the size property.
this.checkBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2D), Telerik.Reporting.Drawing.Unit.Inch(0.079999998211860657D));
The height attribute works but when I try to change the width, the text part of the checkbox is getting cut off. It's very frustrating as I have spent a lot of time on it without getting the desired result.
Can you please assist me this issue.
Thanks,
Ashith.