Telerik Forums
Reporting Forum
2 answers
551 views
Hi friends.

I'm new in this forums and also new with telerik reporting but I'm also very excited with his capabilities (anchoring, docking previsualizing on desing time, etc..)

but, of course... I have a little issue.

I start a simple report that no have anything. It have'nt also a datasource.

I put on page header a textbox, put a string in his value property and set his style to align the text right. Also I anchor it on left and right so in runtime (or previewing) it's expected that the string of the value property appears aligned to right and if string is some large and not shows full on design, it apperas full on runtime.

I also copy and paste this object on detail section and reportfooter section.

When I preview the report the textbox objects on page header and page footer appears invisible but the object on the detail format apears fine.

It seems to be a problem with the combination of right align style and anchoring because if I remove one of them properties the objects appear visibles on page header and page footer but of course not anchored or not aligned.

I'm new in telerik reporting so it's possible that i'm missing something simple :P

so can you help me?

Thanks a lot for your time.

Sincerely
David Tomás
Milen | Product Manager @DX
Telerik team
 answered on 06 Feb 2008
1 answer
200 views
Hi

Right now I am developing a web application in which I am making use of Telerik Reporting Service and  till now its functioning well.

I am also having some Charts/Graphs in my application, and I am looking to make them more better from designer prospects,So I would like to know is there any
way by which you can add "WATERMARK" to Charts/Graphs?

Any link or small code snippet will be appreciated...Also I would like to know is there any specific property to do this or it requires StyleSheets?

Thanks

Rahul.
Chavdar
Telerik team
 answered on 05 Feb 2008
1 answer
128 views
Hi friends,

I see in this forums and with my copy of telerik reporting 2007 q3 sp1, that there is no way at this moment to translate the toolbar of win viewers (I don't know if web viewer can) in other language than English.

I think that while you design a system to standarize translations, you can easily add a visible property to toolbar and a hit function for any of the buttons on your toolbar so we can create our custom translated toolbar out of winviewer and call your buttons functionality when needed.

It also serves to resolve the customization of toolbar adding buttons etc.

I't only an Idea...

Sincerely

David Tomás
Svetoslav
Telerik team
 answered on 05 Feb 2008
1 answer
126 views
I developed reports using telerik reporting. When the result of the report is small (less than 20 pages) I can export to PDF or Excel perfectly. However, when the result is big (50 - 100 pages) then I hit timeout error. I am accessing the appl from intranet. How can I over come this? Any one able to export report which is more than 100 pages before?

Thanks
Chavdar
Telerik team
 answered on 05 Feb 2008
0 answers
104 views
I figured it out. Please disregard.
Eric
Top achievements
Rank 1
 asked on 04 Feb 2008
2 answers
967 views
Could someone suggest a way to convert Unit of Inches to pixels. I've tried to get UnitConvert.ConvertTo going but if I understand correctly I need to plug in a EnumTypeConverter but the class is not public.

Thanks,
Jason

Svetoslav
Telerik team
 answered on 04 Feb 2008
1 answer
202 views
Can you define an expression for Count Distinct on a field of a report?
Svetoslav
Telerik team
 answered on 31 Jan 2008
1 answer
151 views
I am trying to design a report for a custom DotNetNuke module that I am developing.  How would one go about designing a report that connects to a Business Object.  Do I have to create a Dataset in order to design the report?
Chavdar
Telerik team
 answered on 30 Jan 2008
1 answer
119 views

I have been evaluating Telerik reports for a few days now. I like what i want seen so far.bt i m facing a lil bit problem that some time when SQL query returns nothing then reporting process jst goes in to wait state.bt often it desplay the contents that no page to display bt some time it jst goes to wait state.normaly this prob. raise when Master report have a field be there is no field in subreport.the approach i m using is the following

Private Sub SubReport1_NeedDataSource(ByVal sender As Object, ByVal e As System.EventArgs) Handles ItemQtyByContainerSubReport1.NeedDataSource

 

Dim subreport As Telerik.Reporting.Processing.Report = DirectCast(sender, Telerik.Reporting.Processing.Report)

 

cmd.CommandText = "SELECT ITM.ITM_NUMBER, ITM.ITM_NAME, SUM(PCQ.PCQ_QTY_IN_HAND * MFK.ITU_QUANTITY) AS Qty " & _

"FROM AFS_PCQ_PUR_CON_LINE_QTY_IN_HAND AS PCQ INNER JOIN " & _

"AFS_PUC_PURCHASE_CONTAINER AS PUC ON PCQ.PCQ_PUC_FK = PUC.PUC_ID INNER JOIN " & _

"AFS_ITM_ITEM AS ITM ON PCQ.PCQ_ITEM_NUMBER = ITM.ITM_NUMBER INNER JOIN " & _

"AFS_UOM_UNIT_OF_MEASURE AS UOM ON PCQ.PCQ_UOM_FK = UOM.UOM_ID INNER JOIN " & _

"AFS_ITU_ITEM_UNIT_OF_MEASURE AS MFK ON UOM.UOM_ID = MFK.ITU_UOM_FK AND ITM.ITM_ID = MFK.ITU_ITM_FK " & _

"WHERE (PCQ.PCQ_QTY_IN_HAND > 0) " & _

"GROUP BY PUC.PUC_CONTAINER_NUMBER, ITM.ITM_NUMBER, ITM.ITM_NAME " & HavingClause

adapter = New SqlDataAdapter(cmd.CommandText, sConnectionString)

adapter.Fill(ds)

subreport.DataSource = ds.Tables(0).DefaultView

End Sub

Rossen Hristov
Telerik team
 answered on 29 Jan 2008
3 answers
990 views

Hello,

This is the first time I've been using Telerik Reporting in a major project and I've been having some major problems.

At first, the development experience with TR was really nice up until the point where the VS designer quit working.  After the designer quit working, everything has been downhill since....

ISSUE 1:
When I first start Visual Studio, and double click on a relatively detailed report, I get the following:

One or more errors encountered while loading the designer. The errors are listed below. Some errors can be fixed by rebuilding your project, while others may require code changes.


The designer could not be shown for this file because none of the classes within it can be designed. The designer inspected the following classes in the file: PropertyListing --- The base class 'Telerik.Reporting.Report' cannot be designed.

Hide    


at System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.EnsureDocument(IDesignerSerializationManager manager)
at System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.PerformLoad(IDesignerSerializationManager manager)
at Microsoft.VisualStudio.Design.Serialization.CodeDom.VSCodeDomDesignerLoader.PerformLoad(IDesignerSerializationManager serializationManager)
at Microsoft.VisualStudio.Design.Serialization.CodeDom.VSCodeDomDesignerLoader.DeferredLoadHandler.Microsoft.VisualStudio.TextManager.Interop.IVsTextBufferDataEvents.OnLoadCompleted(Int32 fReload)





After 3 or 4 attempts closing and opening the report, the report will finally load.  Very annoying.  I'm not sure why this happens.

ISSUE 2: Support for domain objects in an IList<T> tend to be flaky.  For example, if I set the DataSource property in the designer, and load sample data (similar to how Car/Cars List<Car> example, when trying to setup the Filters property, I get a Null Reference Exception from the designer.

ISSUE 3: Debugging/Troubleshooting the Reporting Framework is hard because of the signed reporting assemblies.  I was able to build the Telerik Reporting from the source code and attempted to replace the "Release" version with my own "Debug" version to further troubleshoot the issue, but it seems that any pictures I've added to reports while using the "Release" versions get serialized and signed with the "Release" serialized object signatures in the report RESX resource file, so replacing the run time assemblies with "Debug" versions doesn't exactly work.

I've tried to setup a small demo project to demonstrate the problem but I'm not able to reproduce the issues.  Anyone else getting designer problems?  Any suggestions on debugging this?  I've spent about 2 days already wasted trying to solve these issues looking for a final "work flow" to work with these telerik reports.

Thanks,

Brian Chavez
Top achievements
Rank 2
 answered on 28 Jan 2008
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?