Hi,
Most design programs allow the user to select and object and "nudge" (move) up, down, right, left in very small increments.
I miss this feature in the report designers. Always have to use the mouse is not the best experience in tight places.
Please add this capability.
Some programs also have variations of the feature base on the if the user presses CTRL+ {ARROW} or SHIFT + {ARROW}
Thank you,
Karl
We are using a background image in our report. We noticed that on the Mac, the graphs were rendering very small when exporting to PowerPoint.
I found this thread that said to set the ‘UseMetafile’ rendering device setting to False. After doing so, it fixed the graph issue but then broke the background image, for both Windows and Mac PowerPoint. The background image is now very small.
When you try to send the report through the SendMailMessage functionality but an exception is thrown, the report will disappear. If you click on Refresh and try again with fake data, the exception will be thrown but the report will remain. If you prefer to refresh it automatically, you can use the error event:
var viewer = $("#reportViewer1")
.telerik_ReportViewer({
serviceUrl: "api/reports/",
reportSource: {
report: "Report Catalog.trdp",
},
error: function (e, args) {
console.log("This event handler will be called after a page of the report is ready.");
console.log("The error message is: " + args);
viewer.refreshReport();
},
viewMode: telerikReportViewer.ViewModes.INTERACTIVE,
scaleMode: telerikReportViewer.ScaleModes.SPECIFIC,
scale: 1.0,
enableAccessibility: false,
sendEmail: { enabled: true }
}).data("telerik_ReportViewer");The following exception occurs when you attempt to add a Html5 Report Viewer from the VS item template in a project that already contains a CLR report:
"Error: Fail to add project reference System.Runtime.InteropServices.COMException (0x80004005): Adding 'WebApplication2' as a project-to-project reference would cause this project to reference itself. at VSLangProj.References.AddProject(Project pProject) at Telerik.Reporting.Vs.Common.ProjectManager.TryAddProjectReference(Project projectToReference)"
The viewer is still added successfully and displays the report.
window.jQuery = jquery;
For example, removing the above lines results in the error '$.throttle is not a function' in the 'continuous scroll' mode of the viewer. The workaround is to use the 'single page' mode.