3. OS : xp pro service pack 3
Tools/product : Telerik reporting version 2009.2 701 (Jul 1, 2009)
Web Viewer version : 3.0.9.430
i would to know how to call user defined function from mssql to be displayed in a report. Pls provide me an example/documentation regarding this issue. One more thing, im using automatic ui parameterized feature to filter data ( which prompt user input ), i want to use more than one parameter to filter data. When i just tried to add more parameter it failed to work but working well with one parameter. How to address this problem? Since im working with web application, when i want run the project thru localhost, the page is empty (no data displayed) but i could preview the report. How to solve this portion.
Thank You
Your guidance is much appreciated
Regards
Pat
| Telerik.Reporting.SubReport subRep; |
| Unit unitX = Unit.Cm(0.1); |
| Unit unitY = Unit.Cm(0.1); |
| SizeU size = new SizeU(Unit.Cm(0.5), Unit.Cm(0.5)); |
| foreach (string wo in woArray) |
| { |
| //create subreport |
| subRep = new SubReport(); |
| subRep.Size = size; |
| subRep.Location = new PointU(unitX, unitY); |
| subRep.ReportSource = new Report(wo); |
| unitY = unitY.Add(Unit.Cm(2)); |
| detail.Items.Add(subRep); |
| } |
Hi,
I have created the report and make the formatting using and <br/> ,When I am seeing it on the browser it is perfect what I need ,I am getting however when i export to PDF the report is showing the   and <br/> tag.
However we know it is not right ,since export should have to function well and export same as it is showing on the browser as other exporting program do.
Please provide the solution.
Thanks,
Neeraj