I have a report and I need to set a group '' property to 'after' if a parameter on the report is 'true'. Is there a way of doing it?
I am using the report designer for WPF.
Hello,
in my project i need to sum values from DB column which contains string values too (column Value (type String)). I have information about type of Value (column Type).
Please is possible to write expression for conversion Value from type String to type Float and then SUM all this numeric values?
Simplified model:
ID Value Type
================
1 5,21 number
2 text 1 string
3 4,56 number
4 text 2 string
And i need summary: 5,21 + 4,56 = 9,77
Thanks for any idea.
Lukas
Telerik Report Designer v11.2.17.1025
Hello,
We have a Win Forms project with a Telerik Report and at the same project we have a Form where we added the report viewer. What we want to do is to get the item collection of the Report to our main Form and change their values before we display the report at the viewer.
Thanks in advance for your time.
Ok, admittedly, I haven't worked on this project for at least 3-4 years... However, a recent discovery of a bug means I need to modify some reports. We have got version 9.1.14.624 with no option to update.... Now when trying to run a report in debugger IIS Express we get the following error and reporting just halts and dies...rendering the product completely useless to us...
TypeError: Failed to execute 'initStorageEvent' on 'StorageEvent': parameter 8 is not of type 'Storage'.
at setItem (c:\projects\stable\touchretail.trims.hub\reportviewer\js\telerikreportviewer-9.1.15.624.js:3531:27)
at value (c:\projects\stable\touchretail.trims.hub\reportviewer\js\telerikreportviewer-9.1.15.624.js:3540:18)
at Object.clientId (c:\projects\stable\touchretail.trims.hub\reportviewer\js\telerikreportviewer-9.1.15.624.js:3592:25)
at setClientId (c:\projects\stable\touchretail.trims.hub\reportviewer\js\telerikreportviewer-9.1.15.624.js:527:31)
at Object.<anonymous> (c:\projects\stable\touchretail.trims.hub\reportviewer\js\telerikreportviewer-9.1.15.624.js:547:18)
at i (c:\projects\stable\touchretail.trims.hub\scripts\jquery-2.2.0.min.js:2:27066)
at Object.fireWith [as resolveWith] (c:\projects\stable\touchretail.trims.hub\scripts\jquery-2.2.0.min.js:2:27829)
at z (c:\projects\stable\touchretail.trims.hub\scripts\jquery-2.2.0.min.js:4:11828)
at XMLHttpRequest.<anonymous> (c:\projects\stable\touchretail.trims.hub\scripts\jquery-2.2.0.min.js:4:15388)
How to fix this please? We've not changed our code for donkeys years, so why would this stop working all of a sudden?
Hello,
I am trying to pass two date parameters to my query in Query designer but i getting below progress error
ERROR[22001][DataDirect][ODBC Progress Openedge Wire Protocol driver]String data, right truncated.Error in parameter 3.
Whereas it is working for other data types like character, integer and logical.kindly help me to resolve this issue
I have an MVC application with a single page to render numerous reports based on user selection. On the load of the page, no report is rendered until the users selects the desired report and sets some custom parameter controls then clicks a button to run the report. In the button event handler, I am collecting the parameters and using $('#reportViewer1').telerik_ReportViewer(...); to display the report. This works perfectly for the first run, but subsequent runs fail to reload the report, regardless of the parameter values changing.
I have tried to test for the existence of the reportviewer as below but this didn't do the trick either. Is there a way for me to reuse the reportviewer or destroy it and start fresh each time?
var reportViewer = $("#reportViewer1").data("telerik_ReportViewer");
if (reportViewer !== undefined)
{
reportViewer.reportSource({
report: "Website.Reports.ParameterCheck, Website",
parameters: {
...
}
});
}
else
{
$('#reportViewer1').telerik_ReportViewer({
serviceUrl: "/api/reports/",
templateUrl: "../Reports/telerikReportViewerTemplate-FA.html",
//AuthenticationToken: "myToken",
viewMode: telerikReportViewer.ViewModes.INTERACTIVE,
scaleMode: telerikReportViewer.ScaleModes.SPECIFIC,
scale: 1.0,
reportSource: {
report: "Website.Reports.ParameterCheck, Website",
parameters: {
...
}
},
ready: function () {
alert("refreshing");
this.refreshReport();
}
});
}
Prerequisites:
Test Case:
Expected: MultiSelect should display fine besides Telerik Report.
Actual: MultiSelect Displayed with corrupted style.
You can check and review my screen shoots for packages used and multiselect with report and without display.