Hello
I have an Invoice report containing sold items.
If try to group the items by description that column is just above e.g.
description blah blah
item 1 $250
item 2 $260
However, I want to make it like the following:
description blah blah
item 1 $250
item 2 $260
Can anyone give me an example about how to bind the objectDataSource for the Data Source in telerik report ?
I hope the example is comprehensive,including Report Designers UI wizards and the reportviewer part.
Besides, the reportsource is a UriReportSource not an InstanceReportSource,this is important.
the other question : there is a List<T> in the object, I need the the taskInfo and the list<C> are both in the report
just like:
public class TaskInfo
{
public string a { get; set; }
public string b { get; set; }
public List<C> listC { get; set; }
...
}
i think the solution is i need use multiple objectDataSource in a single Report , but how?
I have already read the Help document and i tried ,but i failed ! I found the posts on forums but also failed !
I'm using Telerik Reporting Q1 2015 , vs 2013 , .net framework 4.5 and it is a wpf project.
Thank you!
Hi,
I have a chart failed to display properly (turned to black background) in Chrome, but it works for other browser. Any idea about how to fix this?
Many thanks!
I would like to know ,can i get sample.png style in Telerik reporting R2 2016 and R3 2016(lastest).I use Telerik reporting graph with object datasource to get this column chart.If can't,how can i know differently this group by month.I also appologize for my english is not good. Thanks.
With Regards,
Shwe Yee
I am having a hard time getting a report to print to a Brother QL-1060N printer. The printer is using a 1 1/7" wide label roll that can print any length of label and it cuts when finished. Because it is 1 1/7" wide, everything is printed in landscape so that it is laid out properly on the label. However, since the label is longer than it is wide, it is technically Portrait orientation.
I have been trying every possible combination of printer settings for PaperSize = 1.14x3.54 or 3.54x1.14, Landscape property of the report = True/False, etc. When I send the report to the printer, it just kills the printer (flashing red light on printer, need to be reset). That error usually indicates an incorrect paper size sent to the printer. I am able to print a test page from Windows in both Portrait and Landscape orientation, but as yet, I have not been able to get anything to successfully print to the Brother printer from a report. Any guidance would be much appreciated!
Hello, i just started using Telerik and im creating a project using MVC 5, I use the HTML5 viewer using the add item to the project and when i go ahead and do that i select a report i have previously made on the standalone designer but when i try to run it i get the
"Warning: Connection string with name 'Server=127.0.0.1;Database=identity;Uid=root;Pwd=qwerty123;' is missing in the application configuration file."
On the web.config of the MVC project itself i do have that exact connection string, like this:
<connectionStrings> <add name="DefaultConnection" connectionString="Server=127.0.0.1;Database=identity;Uid=root;Pwd=qwerty123;" providerName="MySql.Data.MySqlClient" /> </connectionStrings>
Can someone help me please? Is there a way i can set up the connection string from where the report will connect to manually somewhere in the mvc project?Been stuck some time with this. Thanks in advance.