Telerik Forums
Reporting Forum
3 answers
227 views

How to I setup my filter to select the value I pass it from a webpage?

<button onclick="openWin('<%# Eval("pws_id") %>'); return false;">Open Print Window</button> 

 

function openWin(PWSID) {

 

radopen(

"print.aspx?pws_id=" + PWSID);

 

}

Nasko
Telerik team
 answered on 07 Oct 2013
3 answers
146 views
I have a DAL (Data Access Layer) added to my report application.
I access the DAL via ObjectDataSource. This works fine. I can see the properties of the class/etc.

I can create a Report Parameter that binds to the ObjectDataSource and set the DisplayMemeber/ ValueMember Fields (no issues)
When I attempt to view the report in "Preview" the Report Parameter is blank (No Data)

I have unit tests set up to verify that data is coming back and all my tests work.

Also If I put the report in question in a web page the Report Parameter in question will populate perfectly fine.

I would really like to have the "Preview" functionality working correctly.

Can you point me in the right direction to address this issue?
Nasko
Telerik team
 answered on 07 Oct 2013
1 answer
131 views
Hi

I have created a report that has a table which show a list of file names. For each row's textbox, i have used action to make them able to launch the external file. I have provided the full file path as the "Target URL".

When i launch the report viewer, sometimes it work. Sometimes it does not work. (especially path with dots in between, such as D:\Work\R1.01\TFSSolution.Data.External.Files\instruction.pdf)
It will show the following error:
'Cannot set unknown member '{clr-namespace:Telerik.ReportViewer.Xaml;assmebly=Telerik.ReportViewer.Silverlight}Interactivity.Action'.' Line number '1' and line position '15114'.

Am i doing the right way to navigate to external file? The report viewer i am using is WPF.

Thanks
tungngie
Stef
Telerik team
 answered on 04 Oct 2013
4 answers
505 views
Hi,

I have an ObjectDataSource with Collection as follows:

public class Person
{
    public string FirstName {get; set;}
    public string LastName {get; set;}
    public List<Email> emails {get; set;}
}

public class Email
{
  public string Address {get; set;}
  public string Category {get;set}
}

A method returns a List<Person> that is used as the datasource for the report

In the Report Explorer I see the fields FirstName, Lastname and Email
However Email only gives me Capacity and Count and not Address and Category.  It seems that the Data Explorer cannot drill down to the Nested list of Emails and its properties.

Is there a way to set it up so that the Email fileds are exposed Data Explorer?  This way I was hoping to avoid using subreports which will get a object datasource  of "PersonEmails" from a method and use this in the details.

Thanks,
Peter



KS
Top achievements
Rank 1
 answered on 04 Oct 2013
3 answers
242 views
I have been attempting for a week now to get multiple subreports on a main report to go into multiple columns on the main report.  Instead, the subreports show up on the 2nd page?  At no time do they ever go over to the next "logical" page, but instead create new pages and show up in the first column.  I have verified that the subreports do indeed fit horizontally within the 2 columns of the report.

Is there anyway to fix this?
Tim
Top achievements
Rank 1
 answered on 03 Oct 2013
1 answer
169 views

Hi,
I am having a problem with Telerik Reports Printing.I am using Telerik Reports with Telerik Report Viewer. In Chrome when i click Print button it 
gives me an alert
'Unable to Perform the Print Operation'
I googled on it and found from Telerik forums that Adobe plugin should be installed and enabled 
in order to use Print, I updated my Adobe Plugin in Chrome,

This solution has resolved problem only on my local server(http://localhost:7963/) but on Live server(www.xyz.com)
it is still giving me the same alert. I am using GoDaddy hosting server. 

I am using latest version of Chrome (Version 31.0.1650.4)
and latest version of Telerik Controls


What should i do in order to perform the Print operation of Telerik Reporting on Live Server using Chrome ?

Kamran
Top achievements
Rank 1
 answered on 03 Oct 2013
3 answers
411 views
Hi
I see the headline NEW Standalone Report Designer for end-users in http://demos.telerik.com/reporting/home.aspx but I'm having difficulty finding any supporting documentation, overview or video.

I'd like in the first instance to determine if it would be suitable to be made available to our users and what is required to do so.
Can you let me know where the corresponding documentation is please?

Thanks
Craig
Stef
Telerik team
 answered on 03 Oct 2013
1 answer
124 views
hello,
i have a picture of 150 dpi and 3.5x2. my report is multi column. report looks perfect except html view cause html is good for 96 dpi at most. i have tried picture box properties and also tried cell background image but in both cases picture is too large for htm view. is there any work around this?
i already sent admin ticket but they will get back to me on monday and i wanted if somebody can give me some direction.
thanks

Unknown
Top achievements
Rank 1
 answered on 03 Oct 2013
1 answer
256 views
Hello,

We have a requirement to allow for client side printing of a Draft for banking purposes in a silverlight application. I decided to build this in telerik reporting. Everything worked great. I installed a truetypefont (.ttf) of a MICR E13B font. I could get this font to display correctly in the designer, the preview, the html preview, and within the Silverlight application through the report viewer control; however, whenever I print, only the special characters display - the numbers do not display.

Is there something I am missing? Should I open a support ticket for this?

Kind regards,

-Ricky
Ricky
Top achievements
Rank 1
 answered on 02 Oct 2013
3 answers
269 views
Hello, 

I have the next situation:

1. I have an object called denominations with two string attributes.
2. I have an object called medias with two string attributes
3. I have an object called Cash with two string atributes and a list of denominations attribute
4. I have an object called Envelopes with two string atributes and a list of medias attribute
3. I have an object called Deposits with several string attributes and a list of cash and a list of envelopes in the attributes.

Something like this:

 
public class DepositWidgetDto
    {
       public DepositWidgetDto()
        {
            Accounts = new List<string>();
        }
 
        public Guid Id { get; set; }
 
        public string Number { get; set; }
 
        public List<string> SealsCodes { get; set; }
 
        public int NonRecognized { get; set; }
 
        public List<CashDto> Cash { get; set; }
 
        public List<EnvelopeDto> Envelopes { get; set; }
 
        public List<UnVerifiedDto> UnVerified { get; set; }
 
        public List<string> Accounts { get; set; }
    }

I need to show in one table all the information, no matter if I have to repeat each parent value per each child value; example:

number |  SealCode | CashList Attribute1 | CashList Attribute2 List1 | EnvelopList Att1 | EnvelopList Att2 List
0001 0001 value1 valueList1 value1 valueList1
0001 0002 value1 valueList2 value1 valueList2
0001 0002 value1 valueList3 value1 no value
0002 00012 value2 valueList12 no value no value
0002 00012 value2 valueList13 no value no value
0003 00013 no value no value value12 valueList12
0003 00013 no value no value value12 valueList13
.
.
.


How Could I do that in telerik reporting in one table?

Thanks
IvanY
Telerik team
 answered on 02 Oct 2013
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
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?