Telerik Forums
Reporting Forum
5 answers
83 views
Hi,

We recently upgraded our app to silverlight 5, and telerik tools and reporting Q3 2012.  We've noticed a change in printing behaviour with the silverlight report viewer running in native printing mode.

Previously you had to select the orientation every time via the print dialog if you wanted to deviate from the printers default orientation, regardless of the setting on the report.  I understand the reasons for that.

Now, if you print a portrait report to a portrait printer, it prints fine.  However, if you print a landscape report to the printer, without changing orientation to landscape on the printer, it prints in landscape but shunts the entire report to the right by about half a centimetre or thereabouts, potentially causing the very right hand side of the report to be lost.  It does the same thing if you print a portrait report to a printer in landscape orientaion (that is to say it prints in portrait but shunts the report to the right).

Is page orientation meant to work in SL5 with telerik reporting and the report viewer?  Is there a setting we've got wrong somewhere?

If this isn't behaviour you've come across I'll need to scan a print to upload as it obviously only happens to an actual printed page.
Chavdar
Telerik team
 answered on 23 Apr 2013
1 answer
112 views
Hi all,

I am new to Telerik Reporting, and I have to make the chart shown in Picture1. For now, I have achieved the result shown in Picture2.
Ideally, the resulting chart should be exactly identical to Picture1, but for now the main goal is adding  the labels "CEO", "CFO", etc.  above the bars, and  the numbers in the yellow circles.

I have no idea on how to do this; can anyone point me in the right direction?

Thanks in advance,

Gianfranco
IvanY
Telerik team
 answered on 22 Apr 2013
1 answer
440 views
Hello,

to get a jump start in reporting.

Is it in any way possible to import Word or Excel reporting documents as a template(utilizing the format), into report designer, and then continue to work with them in Report designer ? (remember Word/Excel may be saved in xlsx, xml or html format).

Any tricks we do not know about ?

SwanB
IvanY
Telerik team
 answered on 22 Apr 2013
8 answers
1.4K+ views
I have a report that works fine when all report's parameters have values that make the data source get records.
But when the result's query has zero records, the report gives me the following error:

An error has occured while processing TextBox 'paymentIdDataTextBox':
The expression contains object 'paymentId' that is not defined in the current context.

How can I display a "No Records Found" message?
Keith
Top achievements
Rank 1
 answered on 20 Apr 2013
1 answer
170 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
355 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
87 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
169 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
242 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
71 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
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?