Hello
I can create this RadTreeList with a parent and child key from a table.
However I have the following structure --
Table 1
-----------
ParentId_1 SomeData
1 <abc>
2 <abc>
Table 2
-----------------
ParentId_2 ParentId_1 Child_Id
Null 1 2147
2147 1 2176
2176 1 2179
2176 1 2180
Null 2 5283
5283 2 20131 etc.
I need a result that looks like --
> 1
> 2147
> 2176
>2179
>2180
>2
> 5283
>20131
What I am getting is this--
> 1
> 2147
> 2176
>2179
>2180
> 5283
>20131
> 2
> 2147
> 2176
>2179
>2180
> 5283
>20131
Is it possible to get the result that I want with data separated in two tables?
If not, can you suggest an alternative?
Thanks
Raka
Hi,
I would like to localise the standard texts in the Silverlight ReportViewer, but I'm not sure how to go about it. If you have a look at the file attached, the "Generating report..." text is an example for what I would like to localise.
Is this possible? I did the same for the RadRichTextBox by adding the RadRichTextBoxResources.resx and RadRichTextBoxResources.en.resx files, and adding the correct keys to the files, translating it to my native language and English.
I did this by following the documentation and downloading the original resx file for the RadRichTextBox, so I knew which keys to use. Do you guys have this resx file for the ReportViewer with the correct keys for me?
Thanks for the help.
I have a Crystal Report I'm replacing and in Crystal you can create a Group Header section that just contains some text boxes. The result is the detail section is bounded by these boxes. If you look at the attached pic of an example, you will see the columns of the detail section are outlined.
When I try to create this in Telerik, I get a box around each line in the detail section. There has to be a way to create the effect in Telerik. I'm just baffled as to how to do it.
I have a user function that returns an object with a lot of calculated fields that are expensive to call each time. Is there a way to call the function one time and save the results so that it doesn't get called multiple times as I display the fields on the report?
There are at least 10 individual text fields that are displayed on the report that all come from the user function.
Thanks.
Hello
Any tips on how to remove the indent on bulleted list in html textbox ?
Tried padding and marging but they do not fire.
<ul style="padding:0px;margin:0px;">
<li>xxxxxx</li>
<li>xxxxxx</li>
</ul>
regards
Mark
Hello,
I am using Telerik Standalone reports (.trdx) reports of version Q2 2014. I am facing an issue with HTML preview of report being used in an MVC ..net project. I am using mostly table object to render data but this issue occurs on any type of control i place in report.
Both the issue picture and required result pic are attached with the thread.
I want to programmatically export a report book, however this command fails when I try to compile with the error:
Error 6 Argument 2: cannot convert from 'Telerik.Reporting.ReportCollection' to 'Telerik.Reporting.ReportSource'
Telerik.Reporting.Processing.RenderingResult ReportOutput;
ReportOutput = reportProcessor.RenderReport("xls", RB,
null);
I've seen a ReportBook passed to the reportProcessor in other online examples, so I'm not sure why it's failing. I'm running 2012 Q2.
Hi!
I am currently trying to design a crosstab report with the following basic layout:
Row 1: |Header1 | Header 2 | Header 3| Header 4|
Row 2: |Group 1 | | | |
Row 3: | |Group2 | | |
Row 4: | | |Group 3 | |
Row 5: | | | |Group 4 |
The first group is visible, the rest is collapsed at the beginning.
To make the whole table visually a bit more attractive I want to use empty lines to create blocks that make the table look like in the first attached image file.
I achieved this by adding empty rows between Row 1 & 2, and Row 2 & 3. This however only works of course if no other group is expanded. If I e.g. expand Group 2, the result would look like in the second attached file.
To preserve this visual blocks my idea was to insert such an empty row after each group, and change it's visibility depending on the visibility/expension-state of the group above.
I managed this by giving the empty rows a StyleName, and in the DataBound-event of the according textbox that represents displayed groupdata I iterate through all textboxes with that Stylename and change their visibility accordingly.
There is however one simple problem: all event that I found will only fire when I expand a group (ItemDataBound, ItemDataBinding). When I collapse a group no event seems to be fired at all.
Are there any events that could help me in this case? Or would there be a databinding alternative?
Hi,
I want to achieve functionality of creating report definition file (trdx) programmatically and then display into HTML5 page.
For this, I was going through below links-
http://docs.telerik.com/reporting/programmatic-creating-report
http://docs.telerik.com/reporting/report-sources-viewers
However, I couldn't achieve require functionality.
Could you please share step by step guide to achieve this functionality?