Telerik Forums
Reporting Forum
1 answer
178 views
Hello, I have a need to display in the report the passed in parameters and the data in tables. I like to use the same data source for this
for the table and the report. This causes a bug, where the print page count is wrong. Say your table data is 2 pages long, the page count is much higher. It is even worse where multiple tables share the same object data source.

It is nice to reuse the logic and the same object data source, but present different information, such as table header information and let tables display different parts of the row data. Is it possible to avoid the excessive page count in the print preview. This will cause some dissatisfaction for users wanting to print their reports onto paper. 

Regards 
Tore Aurstad, 
Systems developer
HEMIT 

IvanY
Telerik team
 answered on 19 Apr 2013
1 answer
381 views
Hello,

We are  working on a web site using telerik reporting q1 2013 trial version our client will purchase its license for us.
But we have some requirement which client and we want to be clear telerik supports or not.

The Requirement is we have *.trdx telerik report file designed using telerik report designer and displayed in web site using report viewer.
Now client can edit this *.trdx report and save on server
Now my question
1) is this possible using telerik reporting technologies to online edit report in design mode and save again?
2) If not online than is this possible using telerik report designer to update *.trdx and after doing changes in report save it on server directly from telerik report designer.

Please help me out.

So that we can create demo for client and want to make sure that this requirement may be fulfilled by Telerik reporting q1 2013 or with telerik report designer standalone.
IvanY
Telerik team
 answered on 19 Apr 2013
1 answer
95 views
I am using Telerik reporting tool and i wants to create a report shown in the attached image. 
So, can you please guide me that what type of report format i have to use? 
i want to create it using custom data source in MVC 4 C#. I am not able to find such type of example on Telerik community site. So can you please help me out with this.
IvanY
Telerik team
 answered on 18 Apr 2013
1 answer
179 views

Hi,

I put the telerik report viewer in a WebForm page and have integrated it into a MVC project to show any report designed by the designer(any .trdx file, and i don't what kind of input parametes will be included in the report).

Now I am trying to add the feature sending report as attachment by email.  While doing that, I pop up a kendo UI window to allow user input receivers' email addresses (with kendo UI Mutiselect control). 

The problem is that I found there is no way to get the Telerik report view control in my ajax submitted function to generate the report. I took a look at the article http://www.telerik.com/community/code-library/reporting/general/send-telerik-report-as-email-attachment.aspx
 and know how to send telerik report by email, but what if the report has input parameters and user input that in the page and then want to send that report? how to set the parameters if i have no idea on what kind of parameters can be.

Can any one give me some suggestion on how to make it or provide a better solution? I am puzzled by calling between MVC and WebForm...

Thanks,
Leo
IvanY
Telerik team
 answered on 18 Apr 2013
5 answers
258 views
On my development pc I have used some ideas from this forum to implement direct printing from Silverlight( well sorta direct as it skips showing the reportviewer). The user is supposed to be presented the Print dialog box which works great on my dev PC. When moving the xap and dlls to the testing server the user is never shown the print dialog box therefore nothing happens.

Any ideas why it wont show on the server?

Thanks much,
Richard
richard
Top achievements
Rank 1
 answered on 18 Apr 2013
0 answers
83 views
Hello Guys, 

How I can to make my query to receive a parameter using '%like%'?

I tried this 3 options below but its dont working ( last(5ยช) line )

SELECT PSR.NOME, CO.NOME, FU.NOME, CO.ATIVO,CO.ID_PSR
FROM COLABORADOR CO
LEFT OUTER JOIN PSR ON PSR.ID_PSR = CO.ID_PSR
LEFT OUTER JOIN FUNCAO FU ON FU.ID_FUNCAO = CO.ID_FUNCAO
WHERE PSR.NOME LIKE %@Nome_PSR%

SELECT PSR.NOME, CO.NOME, FU.NOME, CO.ATIVO,CO.ID_PSR
FROM COLABORADOR CO
LEFT OUTER JOIN PSR ON PSR.ID_PSR = CO.ID_PSR
LEFT OUTER JOIN FUNCAO FU ON FU.ID_FUNCAO = CO.ID_FUNCAO
WHERE PSR.NOME LIKE '%@Nome_PSR%'

SELECT PSR.NOME, CO.NOME, FU.NOME, CO.ATIVO,CO.ID_PSR
FROM COLABORADOR CO
LEFT OUTER JOIN PSR ON PSR.ID_PSR = CO.ID_PSR
LEFT OUTER JOIN FUNCAO FU ON FU.ID_FUNCAO = CO.ID_FUNCAO
WHERE PSR.NOME LIKE @Nome_PSR


Follow in attachment

Ricardo
Top achievements
Rank 1
 asked on 18 Apr 2013
2 answers
67 views
I use VB 2008... telerik report Q1 2013 trail....
when i drog a shape to report  ...... the visual studio crash right now..
if i click a shape already in a rerport.... crash crash!!!!! 
so ................... this is a big bug~~
Stef
Telerik team
 answered on 18 Apr 2013
1 answer
54 views

Using Silverlight, I can show a simple telerik report passing parm using code like below.  What I need to do is generate the same report for a different list of subjects.  I need to be able to print them all at the same time.  I was going to try to use a report book for this.  Would this make sense in the situation?  How do I add/pass all the parameters to the report book?  I'm guessing I would need to pass all the parameters plus the list of subjects and then in the report book, programatically loop through the subjects and add a new report for each one?

public FormLetterBasicReportViewerView()
       {
           InitializeComponent();
 
           reportViewer1.RenderBegin += new RenderBeginEventHandler(reportViewer1_RenderBegin);
       }
 
 
       void reportViewer1_RenderBegin(object sender, RenderBeginEventArgs args)
       {
           args.ParameterValues["LetterDate"] = CurrentViewModel.FormLetterInformation.LetterDate;
           args.ParameterValues["Greeting"] = CurrentViewModel.FormLetterInformation.Greeting;
           args.ParameterValues["ReplyToName"] = CurrentViewModel.FormLetterInformation.ReplyToName;
           args.ParameterValues["ReplyToAddress"] = CurrentViewModel.FormLetterInformation.ReplyToAddress;
           args.ParameterValues["ReplyToPhoneNumber"] = CurrentViewModel.FormLetterInformation.ReplyToPhoneNumber;
           args.ParameterValues["MailToName"] = CurrentViewModel.FormLetterInformation.MailToName;
           args.ParameterValues["MailToAddress"] = CurrentViewModel.FormLetterInformation.MailToAddress;
           args.ParameterValues["Re"] = CurrentViewModel.FormLetterInformation.Re;
           args.ParameterValues["Paragraphs"] = string.Join("\n\n", CurrentViewModel.FormLetterInformation.Paragraphs);

                ...
IvanY
Telerik team
 answered on 18 Apr 2013
1 answer
222 views
Is this documented anywhere? A lot of forum posts make reference to this, but I haven't been able to find it in the documentation.
IvanY
Telerik team
 answered on 18 Apr 2013
1 answer
98 views
How can you change the chart type for the new graph object through the Visual Studio designer?  Your documentation only show how to change through the standalone report designer. 

Thanks
Chavdar
Telerik team
 answered on 18 Apr 2013
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?