Hi,
my hierachy:
--+-> MasterReport
|
+->
SubReport 1
+-> Textbox 1
+-> Textbox 2
+-> SubReport 11
+->
Textbox 3
+->
SubReport 111
+-> SubReport 21
+->
Textbox 4
+->
SubReport 211
(...)
In my report construcutor i'm hidding SubReport1 like this:
SubReport1.Visible =
false
;
I'd like to be able to make the length of some of my dropdown parameters longer. The default is fairly short and it's hard to select multiple values when there are many options. Is this possible? All of my parameters are created during design-time.
Thanks
Hi,
i'm new to the telerik reporting. I'm using it for WPF application in which all the data are fetched from the WCF service
In the same way, i would like to use the Datasource from the wcf service to the Reporting class. Its very difficult for us to implement the datasource which is not fetching the data
Can you please let me know how to add wcf service as the Datasource for the reporting library?
A sample working project would be really helpful for me to implement the same
Thanks in advance
Ramesh R
Just wanted to share this performance tip.
We are running reports, which were actually not running that impressively fast from our website.
The initial load was very long, and subsequent request (which I guess it reads from the FileStorage cache), was ofcourse faster.
We then added a SSD disk to the dev server, and in the reports controller code we changed the path to the FileStorage part of the ReportServiceConfiguration, so it now pointed to a temp dir on the new SSD - and it now runs 10-15 times faster :
After the first request, changing pages or reloading the report takes 1-2 seconds - before that it was 20+ seconds.
And this is just a dev server, and the SSD was added via USB2 - so I am sure we can make it run much faster when we put it into deployment on bigger hardware.
Hope it helps some fellow Report developers out there ;-)
Hello,
Right now my report show's date time like this: 10/23/2016 6:00:00 PM
However it would be better to appear without the seconds, like this: 10/23/2016 6:00 PM
I want to keep the datetime inside the same HTMLTextBox, I do not want to create a new control. Keeping it in the same control keeps the presentation tight together.
My Expression looks like this: http://screencast.com/t/J0Rtv1z38
What change should I make here?
Can I put C# code here? {Fields.StartDateTime}.ToShortDateString() }
I have read:
http://www.telerik.com/forums/formatting-embedded-expressions
http://docs.telerik.com/reporting/expressions-embedded
But neither of these answered the question.
Hello there. Ive been looking for solution to my problem for some time, yet, I am still not able to solve it. All I need to do is, to change the Y-coordinate of an item (in my case textbox) according to some rules (from data that I get). I can see the option "location" in bindings, but I dont know what to write as an expression. Also, I am not allowed to modify InitializeComponent() method. What should I do?
Thanks :)
I am trying to configure the REST API service use a custom class that implements Telerik.Reporting.Cache.Interfaces.ICache. I am following this doc's instructions and am stuck on the web.config declaration. In the configSections, I need to add a section declaration for the Telerik reporting, but am unsure what class to specify. Is there another doc page has this information? Also, the reason I'm trying to implement my own ICache is to figure out what it does - can someone enlighten me, or point me towards a doc page with this information?
Web.config section declaration [template] below:
<
section
name
=
"Telerik.Reporting"
type
=
"Telerik.Reporting.[SomeClassHere], Telerik"
/>
i have ( list of Table1 ( list of Table2( list of tables3)).
Ex: List of A is hierarchy of List of B , And B is hierarchy of List C.( like parent , Child, grand Children)
In below table Picture , Each Row of Table 1 has Table 2. And Each row of Table2 has Table 3. Totally one object data source share three table ..
3 question --
1.how to set the data Source, inside the table .
2. i tried the binding property of Table 2 , set the data source using Edit bindings data Source = Field.listotTable2, But i can't set the Table3 ...
3. in table2 the data source is bind data Source. But i can't access the member of listofTable2 Class..
Hello,
I have a table grouped by 1 row and 1 column. When I have more than 6 columns there is a width overflow (see file: widthoverflow.jpg) and if it's exported in Pdf the result is awful, all content is splitted...
How can I do to add a new line and avoid width overflow?
Thanks,
Laura
Now that ASP.NET Core is RTM...is there a Reporting for ASPNET Core?
I have a client where I need to add a reporting engine to a .net core solution, and wonder what the current Reporting support is?
Thanks!
John