Hello,
is it possible to build in any animation?
Obviously it is not possible to drag and drop some buttons into the report.
So I take a textbox and "misuse" it.
Can I animate it with a mousehover effect?
Somebody who goes over that textbox will get another background.
Best regards
Simon
Good day! Please tell me - What can be done to speed up the work of the Report designer
, in the case when there is a rendering of more than 1000 pages.
Sometimes the computer freezes, sometimes errors are issued:
- internal server error thread was being aborted.
or
- unauthorized
authorization has been denied for this request
Is it possible to somehow set the mode to receive a report by several pages?
On the latest Telerik Reporting Designer when adding a QR Code I cannot seem to include the equals sign (=) as part of the value. A sample of the value I need to output is "=ABCD123" but this doesn't appear to be valid. I've tried to encode it, surround it in quotes and escape it with a backslash but no matter where in the text it is it always strips out the special characters.
Is there any way to include the equal sign at the beginning of a literal text value in a QR Code?
Thanks
Hello.
I need a full example of a custom html template to customize the tool bar of the html5 report viewer.
I tried this
templateUrl: '/Genesys.POSCommVision.POSWeb/Views/Shared/telerikReportViewerTemplate.html', and I got no error loading it but the report frezes on "loading."
Thanks in advance
We have a series of functional tests which test that our endpoints are returning a 200 status code and return a file with a content type of application/pdf.
When running the tests individualy the all pass however when clicking "run all tests" we find that tests fail at random. So sometimes 2/10 will pass other times 9/10 etc.
A null reference exception is returned with the addition of "CancelProcessingException: An error occurred while evaluating the report parameters. Report source cannot be processed. Check the InnerException for more information." unfrtunatley the inner exception is also null.
An example of one of our functional tests is as below:
[Fact]
public async Task Post_valid_data_returns_success_and_correct_content_type()
{
// Given
var client = _factory.CreateClient();
// When
var response = await client.PostAsJsonAsync(BASE_URL,
new ReportDataExample().GetExample());
// Then
await response.EnsureSuccessStatusCode();
response.Content.Headers.ContentType.ToString().Should().Be("application/pdf");
}
I have attached a copy of the full error including stack trace. If anyone could advise on what the issue may be and/or a possible solution it would be greatly appreciated.
Hi,
Is there a way to count the number of selected values in a multi-valued report parameter? I know the result of a multi-valued parameter is an object array (Object[]) but I would like to know the number of items in the array.
Also, is there a way to know if <select all> option is checked or unchecked, in other words if all values are selected or not?
Thank you.
We were using VS 2015 with Reporting R3 2016 before. Recently we upgraded to VS 2017 and Telerik Reporting R3 2017.
After this upgrade we are not able to add new telerik report.
when we try to add new report by selecting Add ==> new item ==> Telerik Reporting R3 2017 (blank) we get below error.
Error: Incorrect version. The target project is using different Telerik Reporting version. Before adding this template the project should be upgraded
with the Upgrade Wizard or you should choose item template for the correct Telerik Reporting version.
Please help me here!
Jagadeesh
Hi to all,
Using the import report wizard in VS2019, I get the "addrange is not a member of table" error in the Classname.Designer.vb
Any idea how to fix it?
Thanks
var purchaseJournal = new PurchaseJournal();
var dateToday = DateTimeOffset.Now;
var lineItemAccountStatement1 =
new
LineItemAccountStatement
{
GroupNo = 1,
INV_NO =
"INV1_APV1"
,
ReportDate = dateToday,
Vendor =
"Vendor A"
,
EnteredDebit = 700,
LineItemID = Guid.NewGuid(),
};
var lineItemAccountStatement2 =
new
LineItemAccountStatement
{
GroupNo = 1,
INV_NO =
"INV1_APV1"
,
ReportDate = dateToday,
Vendor =
"Vendor B"
,
EnteredCredit = 700,
LineItemID = Guid.NewGuid(),
};
var lineItemAccountStatement3 =
new
LineItemAccountStatement
{
GroupNo = 2,
INV_NO =
"INV2_APV2"
,
ReportDate = dateToday,
Vendor =
"Vendor C"
,
EnteredDebit = 8500,
LineItemID = Guid.NewGuid(),
};
var lineItemAccountStatement4 =
new
LineItemAccountStatement
{
GroupNo = 2,
INV_NO =
"INV2_APV2"
,
ReportDate = dateToday,
Vendor =
"Vendor D"
,
EnteredCredit = 8500,
LineItemID = Guid.NewGuid(),
};
purchaseJournal.LineItemAccountStatements =
new
List<LineItemAccountStatement>
{
lineItemAccountStatement1,
lineItemAccountStatement2,
lineItemAccountStatement3,
lineItemAccountStatement4
};
I want to output a table like this