$('#panelBar').kendoPanelBar();// ... later after dom update ...$('#panelBar').kendoPanelBar();
@{Html.Kendo().Grid((List<BNYM.EnSIS.Pricing.Contract.VendorPricingGridResponse>)ViewData["PricingGrid"])
.Name("PricingGrid")
.DataSource(dataSource => dataSource
.Ajax()
.PageSize(25)
.Batch(true)
.ServerOperation(true)
.Model(q => q.Id(m => m.ProductID))
.Model(q => q.Id(m => m.CurrencyCode))
)
.Columns(columns =>
{
columns.Bound(m => m.Category).Title("Category").Width(90);
columns.Bound(m => m.ProductID).Title("ProductID").Width(140);
columns.Bound(m => m.CurrencyCode).Title("USD").Width(50);
})
.Resizable(resizing => resizing.Columns(true))
.Scrollable(scrolling => scrolling.Enabled(true).Height(600))
.Sortable(sorting => sorting.Enabled(true))
.Groupable(grouping => grouping.Enabled(true))
.Filterable(filtering => filtering.Enabled(true))
.Reorderable(reorder => reorder.Columns(true))
.Pageable(Pageable => Pageable.Enabled(true).PreviousNext(true).Input(true).PageSizes(true).Refresh(true))
.RowAction(row => row.HtmlAttributes.Add("data-id", row.DataItem.ProductID))
.RowAction(row => row.HtmlAttributes.Add("data-id", row.DataItem.CurrencyCode))
.Selectable(s => s.Mode(GridSelectionMode.Single).Enabled(true))
 
.Render();
}
$("#chart").kendoChart({ title: { text: "Players in Error" }, /* etc */var chart = $("#chart").data("kendoChart");chart.title = { text: kendo.toString(queryDate, "dddd MMMM d, yyyy") };chart.refresh();Uncaught TypeError: Object [object Object] has no method 'destroy'
Greetings.
I have the following problem, I want to load data into a ComboBox in my service WCF (. Svc). But not charging anything, the only difference I see is the one you selected in the attached images.
The difference is in the type:
In the example website <text/javascript>
In my website <application/xml>
The result running on the website. It is the image (servicio de ejemplo)
Sample code:
<script>
$("#categories").kendoComboBox({
placeholder: "Select category...",
dataTextField: "CategoryName",
dataValueField: "CategoryID",
dataSource: {
type: "odata",
serverFiltering: true,
transport: {
read: "http://demos.kendoui.com/service/Northwind.svc/Categories"
}
}
});
</script>
The result running on the website. It is the
image (mi servicio)
My code:
<script>
$("#categories").kendoComboBox({
placeholder: "Select category...",
dataTextField: "Status",
dataValueField: "AcquisitionNo",
dataSource: {
type: "odata",
serverFiltering: true,
transport: {
read: "http://192.168.0.125/SAGDataService1.svc/vwInventoryHeader"
}
}
});
</script>
It gives me no error just not charge me anything.
I need help please
thanks