I am trying to embed an SSRS report inside a kendo tabstrip in an MVC 5 application. The report shows up but, it does not show any data after submitting the parameters. Here is my code:
@(Html.Kendo().TabStrip()
.Name("tabstrip")
.Animation(animation =>
animation.Open(effect =>
effect.Fade(FadeDirection.In)))
.Items(tabstrip =>
{
tabstrip.Add().Text("Report Data")
.Selected(true)
.Content(@Html.Partial("HomeIntegrityReport").ToHtmlString());
tabstrip.Add().Text("Graphical Data")
.Content(@<text>
<div class="weather">
</div>
</text>);
})
)
Here is the Home Intergrity Report code:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="HomeIntegrityReport.aspx.cs" Inherits="NFO.Ontrac.Areas.PerformanceReports.Views.PeformanceReportsSSRS.HomeIntegrityReport" EnableEventValidation="false"%>
<%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91" Namespace="Microsoft.Reporting.WebForms" TagPrefix="rsweb" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
</head>
<body>
<form id="Form1" runat="server" >
<asp:ScriptManager runat="server"></asp:ScriptManager>
<div>
<rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Cambria"
Font-Size="8pt" Height="700px" ProcessingMode="Remote" Width="1160px"
ShowPageNavigationControls="True" AsyncRendering="false">
<ServerReport ReportPath="/Ontrac/CPE HHC Summary"
ReportServerUrl="reportServer/ReportServer/" />
</rsweb:ReportViewer>
</div>
</form>
</body>
</html>
Please let me know if additional information is needed.
Thanks
Ravali

With IE (and to a lesser extent also in Chrome) on Kendo UI v2016.1.412, if I click on a column header then extend the selection to many contiguous columns, the selection become slower and slower as I include more columns and sometimes this causes the page to become unresponsive.
This is more evident in more complex pages than the online sample (ie with more formulas, etc).
We noticed that selection of multiple columns triggers the onRender event (which we have NOT overridden in any way in our test code) every time a new col is selected.
Maybe that could be the issue?
Hi,
I have a simple list of tasks, and none of them are summary tasks. The titles of the tasks are displayed correctly in the bars in the calendar, but the title that appears in the task list is "undefined". I have attached a screenshot. My Razor view is enclosed below.
Is there a way to display the task title in the task list when there isn't a parent?
Derek
@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>(this.Model.Tasks) .Name("gantt") .Columns(columns => { columns.Bound(c => c.Id).Title("ID").Width(50); columns.Bound(c => c.Title).Sortable(true); }) .Editable(false) .Views(views => { views.WeekView(weekView => weekView.Selected(true)); }) .Height(700) .DataSource(d => d .Model(m => { m.Id(f => f.Id); m.ParentId(f => f.ParentId); }) ))
Using the below code:
sheet.range("A2").formula("0");
sheet.range("A1:A3").values([[1],[2],[3]]);
I noticed that A2 is set to 0. I was expecting it to be set to 2. Is this expected or is it a bug?
Most likely, it is a bug since the below code sets all the range to 2 (including A2).
sheet.range("A2").formula("0");
sheet.range("A1:A3").value(2);

Hello,
I'm trying to populate a Kendo UI Grid column with a dropdown list. Both the dropdown list and the grid control get their data from an api that queries my database which delivers the data as json. I used the example for the Grid custom editor located at http://demos.telerik.com/kendo-ui/grid/editing-custom
Here is my HTML and Javascript:
<div id="workorderdetails"> <div id="grid"></div> <script> $(document).ready(function() { // create DatePicker from input HTML element $("#datepicker").kendoDatePicker({ format: "dddd, MMMM d, yyyy" }); $("#grid").kendoGrid({ dataSource: { type: "json", transport: { read: "http://localhost:53786/api/workorder/1/workorderdetails" }, schema: { model: { fields: { WorkOrderID: { type: "number" }, Description: { type: "string" }, Quantity: { type: "number" }, ShortCode: { defaultValue: { PriceCodeID: 1436, ShortCode: "REF3" } } } }, pageable: true, height: 550, toolbar: ["create"], columns: [ { field: "ShortCode", title: "Price Code", editor: shortcodeDropDownEditor }, { field: "Description", title: "Description" }, { field: "Quantity", title: "Quantity" }, { command: "destroy", title: " ", width: "150px" }], editable: true } }); }); function shortcodeDropDownEditor(container, options) { $('<input required data-text-field="ShortCode" data-value-field="PriceCodeID" data-bind="value:' + options.field + '"/>') .appendTo(container) .kendoDropDownList({ autoBind: false, dataSource: { type: "json", transport: { read: "http://localhost:53786/api/pricecodes/unique" } } }); } </script>When I run the code the grid appears as a horizontal line (it literally looks like an <hr> that's about 2 pixels thick, or nothing appears at all. The JSON for the workorders is an empty set (there's no data in the database), but the JSON for the Price Codes returns about 1000 records. Even though the workorders are an empty set, the grid should still appear so that I can add new records to the database through the grid controls, but nothing appears. Where am I going wrong?

Hello,
We’ve been using require to pull in Kendo DataSource for our Odata calls. We need to now use Odata V4 so we’re trying to update to the latest version. Since updating to version 2016.2.504 of kendo.core.min the kendo object is loaded, but the Kendo.data.DataSource object is missing. This is not an issue using kendo.all.min. I’ve noticed that not only is the DataSource object missing, but many others are too.
I’ve taken the second example here, http://docs.telerik.com/kendo-ui/third-party/using-kendo-with-requirejs, and modified it to use version 2016.2.504 of kendo.core.min (http://dojo.telerik.com/ILAFO). You’ll notice that the error 'kendo.DropDownList is not a function’ is thrown even though DropDownList is one of the supported widgets of Kendo UI Core.
Is there something I'm doing wrong with how I load in core vs all?
Hi,
Is it possible to get series data to render on top of other series data (instead of beside) in the rangeColumn chart type?
I've been trying to do this in the Kendo UI DOjo without success: http://dojo.telerik.com/ANiye
This is the kind of result that I'm looking for: http://jsbin.com/wetatu/1/edit?js,output (this is functionality that highcharts supports).
Thanks,
Ciaran O'Neill
I have grid with X number of rows. Whenever i the grid is bound with a dataset, i need to make sure that the records present in Grid should be removed and add only records from data set
For eg: if ID 102 is already present in grid as well as it is present in new result set, while adding additional details, grid should remove 102 and add it from the new result set.
I wrote the below code to do this . but this is very performance inefficient, when i have 100 records in the grid and new result set adds another 100 records, this is hanging the page.
Please help.
var gridExistingData = datasource.data();
$.grep(gridExistingData, function (d) {
if (resultData.length > 0) {
if (d != null && d.AssetID == resultData[i].AssetID) {
gridExistingData.remove(d);
}
}
});
Please suggest if there is any alternative process to achieve this
Users that use inline Kendo Editor in Chrome on Surface Pro cannot insert a new table. It can be reproduced by using latest version of Chrome (with enabled #touch-events flag) on Surface Pro. When #touch-events flag is disabled through "chrome://flags" everything works fine. The results can be seen online:
http://demos.telerik.com/kendo-ui/editor/inline-editing
Try adding a table using the tool from the toolbar. If you use Chrome on Surface Pro with enabled touch events choosing the size of the table will not add the table to the editable area. Again, disabling touch events in Chrome solves the problem but it's not an acceptable solution.
