I switched my asp.net + kendoui website to use the Kendo CDN and now I am missing the (some?) icons from the grid. I am getting the errors below that appear to be coming from the redirects on kendo's side.
I am thinking I must be doing something wrong, but am not sure where to go from here.
The are:
Website Pic http://imgur.com/a/Oh03a
The relevant code in my _Layout file is:
01.
@{
02.
[snip]
03.
var kendoVersion = "2017.1.118";
04.
}
05.
06.
<!DOCTYPE html>
07.
<
html
>
08.
<
head
>
09.
<
meta
charset
=
"utf-8"
/>
10.
<
meta
name
=
"viewport"
content
=
"width=device-width, initial-scale=1.0"
>
11.
<
title
>@ViewData["Title"]</
title
>
12.
13.
<
script
src
=
"//ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.8.3.js"
></
script
>
14.
<
script
src
=
"//kendo.cdn.telerik.com/@(kendoVersion)/js/jquery.min.js"
></
script
>
15.
<
script
src
=
"//kendo.cdn.telerik.com/@(kendoVersion)/js/kendo.all.min.js"
></
script
>
16.
<
script
src
=
"//kendo.cdn.telerik.com/@(kendoVersion)/js/kendo.aspnetmvc.min.js"
></
script
>
17.
18.
19.
<
link
href
=
"~/Content/bootstrap.min.css"
rel
=
"stylesheet"
/>
20.
<
link
href
=
"~/Content/bootstrap-theme.min.css"
rel
=
"stylesheet"
/>
21.
22.
23.
@*Kendo*@
24.
<
link
rel
=
"stylesheet"
href
=
"//kendo.cdn.telerik.com/@(kendoVersion)/styles/kendo.common.min.css"
/>
25.
<
link
rel
=
"stylesheet"
href
=
"//kendo.cdn.telerik.com/@(kendoVersion)/styles/kendo.default.min.css"
/>
26.
<
link
rel
=
"stylesheet"
href
=
"//kendo.cdn.telerik.com/@(kendoVersion)/styles/kendo.default.mobile.min.css"
/>
27.
28.
<
link
rel
=
"stylesheet"
href
=
"//cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.css"
/>
29.
30.
@Styles.Render("~/Content/css")
31.
32.
@RenderSection("head", required: false)
33.
<!-- begin law html header -->
34.
@Html.Raw(application.HTMLHeader)
35.
<!-- end law html header -->
36.
</
head
>
37.
[snip]
Thanks,
Logan
Recent Kendo update added noDataTemplate shows when there is no search result.
Is there way that make it not display in default?
You can find an example of the issue in this jsFiddle https://jsfiddle.net/ewaldhofman/hjkxcr45/1/
In the example, I have a simple datasource which gets local data, but uses ServerAggregates to show the issue that I am running into. The issue is that I can't figure out how to update the grandtotal (footerTemplate) when using pushUpdate.
I use pushUpdate to improve the performance of updating the grid, and everything works (including group totals - which I have enabled in my environment, although not available in the sample) except for the grand total.
I have tried to call the grid.refresh() and the dataSource.read(), but nothing seems to work.
In kendo grid when I click on the Edit button it shows the Update and Cancel button immediately. Is there any way to prevent this ?
I mean when clicking on the Edit button it should first check the condition if it is true only then show it should show the Update and Cancel buttons
Thanks
Does anyone know if it's possible to have a single button in the grid header that lets me pick which columns to show/hide rather than having it in the column menu on each column???
https://dojo.telerik.com/etIbIvOC
Hello,
I am trying to implement some conditional selection of slots in monthly timeline of scheduler. I looked at an example provided here:
https://demos.telerik.com/kendo-ui/scheduler/timeline
and modified this example by adding the following code to scheduler definition (link to dojo snippet: https://dojo.telerik.com/eciQugem):
selectable: true,
change: function (e) {
var start = e.start;
var end = e.end;
e.sender.select({start: start, end: end});
},
Adding this allows to select slots in row 0 (by default - as expected), but I want to be able to select slots in any row. The documentation suggests I should specify resources in options.resources, but I have no idea what should I put there and having given it a few shots I constantly encounter errors. Could you provide me with an updated dojo example that shows how to achieve it?
Is it possible to change the dropdown for the field selection on this control? We have several "related" tables that can be filtered on and would like to group the fields on the table name & also allow for searching the combo with text input (ie: https://demos.telerik.com/kendo-ui/combobox/grouping).
JT
I want to customize the kendo.ui.Grid for my application and create a base class kendo.ui.GridEx that inherits from the kendo.ui.Grid class. Everything works fine, except with columns.selectable (true). The check boxes appear, but the click events are not handled. Therefore the selection method does not work either (no rows returned).
Example: https://jsfiddle.net/chstorb/g3n5or69/
Greetings.
I am using the custom group functionality with two dropdownlist components, and I found an issue when I manually change the value from the first component to the second component and it doesn’t refresh the change.
I attach two images: one for the configuration and another to show the issue.
It happens in every dropdownlist component that has the same configuration. I don’t know if this is a bug, and if that is the case, how can be fixed?
Thanks in advance.
Is it possible to alter the format of the expressionPreview?
When a date filter is applied, the preview looks like: "Date Is After 'Tue Jan 01 2019 00:00:00 GMT+0000 (Greenwich Mean Time)'" -- I'd like to be able to customize the displayed date format, something like adding "format:"{0:dd/MM/yyyy}" to the 'fields' object.
Thanks