Hi,
Just wanted to confirm that exporting the RadRichTextBox content from the database to a htmlTextBox in Telerik reporting will work?
I planned to have a custom function so that that can be used in the expression in the report. Will that work?
We have a custom e-signature form that is becoming difficult to scale and maintain. I'm evaluating the Telerik Reporting product in hopes that it can replace our custom code. I have a signature field loaded with a scanned copy of a signature, and it's initial visibility is set to false. I have a "Click Here To Sign" button that is set to toggle visibility on itself and the signature field. Everything works fine there.
What I'm curious about is if there is any way to make the entire "Click Here To Sign" field clickable.. instead of just the + button to the left? Or is there any way to change the + button graphic?
Thanks,
Chris
Hi telerik support team,
Is there any possible way to download telerik report programmatically, using HTML5 angularJs.
Thanks & Regards,
Premraj S
Hi,
First of all all I'm kind of a novice when it comes to asp.net and telerik so this might have a to do with my issue.
I have a customer who wants items that are the same but have a different discount to appear separately on the invoice report. Let me explain,
say one makes a sale of 10 items but wants give out one for free. Right now this is a major problem because the free item gets appended to the rest of the items and the discount is showing whatever the discount was for those items. So you get Quantity: 10 and Discount: let's say 10%. But that is not true since you are misled to believe that all the items have 10% even though one of them has 100%..
How would you go about separating the free item which has the exact same itemcode like the rest? Any ideas?
Hi
i have create HTML5 report and it works with parameter but it's don't refresh (get new data from DB) as example:
1. items qty in db was 5 for order is no 1
2. i type in parameter section 1 and get qty 5 in my report >> that is OK
3. now i edit qty in my db and set it to be 3
4. i type in parameter section 2 and get qty of orderid 2
5. now i type 1 again in parameter section and get qty 5 >> that is wrong qty now in db is 3 ??!!
so how can i let report refreshed as it should be (check data each time i type value in parameter section)
Note: when i click refresh icon in report viewer i get report with new data - but i don't need client to click this button each time i just need report data refreshed each time i type an value or each time report is created
Code:
@* Order Report *@
<
div
id
=
"reportViewer2"
style
=
"height:1241px;"
>
loading...
</
div
>
@* Order Report *@
<
script
>
$(document).ready(function () {
$("#reportViewer2")
.telerik_ReportViewer({
serviceUrl: "/api/reports",
templateUrl: '/ReportViewer/templates/telerikReportViewerTemplate-9.0.15.225.html',
reportSource: {
report: "Hemdan.Views.kinds.Select_Order_BarCode, Hemdan",
},
viewMode: telerikReportViewer.ViewModes.INTERACTIVE,
scaleMode: telerikReportViewer.ScaleModes.SPECIFIC,
scale: 1.0,
});
});
</
script
>
We have a TRDX report with Object data source - that has Object = "XYZReport" and DataMember = "GetData()"
When the report is opened via viewer - everything runs fine.
When the report is rendered in a unit test method in a unit test project, it does not invoke GetData() method at all and renders empty report. The XYZReport class is in a separate Project/Classlibrary and Unit Test project references it.
Any clue what could be happening and how we can resolve this?
Hi,
If I make a nativescript app, can I display a report in the app? or just get a download for a PDF? or another option?
thanks,
Carlitos
I recently spent a lot of time trying to fix a problem with one of my sites hosted as an App Service on Microsoft Azure. This particular site has an SSL certificate assigned to the production slot and does not have a certificate assigned to the staging slot. It is my practice to publish my sites to a slot I call "staging" and then once they are tested I use the swap feature in Azure to move staging to production. The site I had contains a page with the new HTML5 report viewer. The reports page looks fabulous and runs perfectly in the staging slot (the non https slot) however as soon as it is swapped into the production (https) site the reports page would return a blank screen. Thanks to a lot of help from the support team and from Fiddler we were able to determine a very simple fix.
The report viewer page was referencing the minimized jquery script in the normal way i.e.
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
Once I changed the http to https everything started working
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
I hope this posts saves some time for anyone else that runs into a similar issue. The fix is clearly very simple but running it down was a challenge