Telerik Forums
Reporting Forum
4 answers
477 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
222 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
156 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
396 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
110 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
209 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
254 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
3 answers
47 views
I have a report that is generated and working as I would like it to, however, I am looking to allow the user at runtime to change the parametersand refresh the data.  It appears that it is possible, however, I am not seeing any detail on how it is to work.

I've tried setting "ParametersAreaVisible" to true as well as "ShowParamtersButton" to true.  But I don't see any interface for the user.  Can this be done?
Nasko
Telerik team
 answered on 02 Oct 2013
1 answer
103 views
it Gave this Error,
Please tell me Solution.

"Error 1 The "GenerateResource" task failed unexpectedly.
System.DllNotFoundException: Unable to load DLL 'FileTracker.dll': Exception from HRESULT: 0xC000001D
   at Microsoft.Build.Shared.NativeMethodsShared.InprocTracking.StartTrackingContextWithRoot(String intermediateDirectory, String taskName, String rootMarker)
   at Microsoft.Build.Utilities.FileTracker.StartTrackingContextWithRoot(String intermediateDirectory, String taskName, String rootMarkerResponseFile)
   at Microsoft.Build.Tasks.GenerateResource.Execute()
   at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute()
   at Microsoft.Build.BackEnd.TaskBuilder.ExecuteInstantiatedTask(ITaskExecutionHost taskExecutionHost, TaskLoggingContext taskLoggingContext, TaskHost taskHost, ItemBucket bucket, TaskExecutionMode howToExecuteTask, Boolean& taskResult)"

Squall
Top achievements
Rank 1
 answered on 01 Oct 2013
3 answers
196 views
Hi.
Is the report viewer (HTML5) control able to resize a report acording to the device displaying the report out of the box?
Should the report desiging process be device aware when authoring?
Say a Iphone or a Nexus7 tablet

Thank you.
Peter
Telerik team
 answered on 01 Oct 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?