Hi
Why filter on EmployeeId field is not good ?
Regards
Attempting w/o success to leverage timeline against existing data. Having difficulty getting it to work..Below is the stock example on the site with the date property in the array changed to 'date1'.. Added the dataDateField; 'date1' to account for the change. Also tried altering the schema in the datasource..
$(
"#timeline"
).kendoTimeline({
dataSource: {
data: [
{
"id"
: 1,
"title"
:
"Bowling tournament"
,
"subtitle"
:
"Location: Sterling Lanes"
,
"description"
:
"Summer Bowling tournament in Michigan"
,
"date1"
:
"2025-06-30T21:00:00.000Z"
,
"actions"
: [{
"text"
:
"Visit the Bowling tournament page"
}] },
{
"id"
: 2,
"title"
:
"Charlie's first football game"
,
"subtitle"
:
"Location: City Football Stadium"
,
"description"
:
"Call coach Williams"
,
"date1"
:
"2022-10-22T21:00:00.000Z"
},
{
"id"
: 3,
"title"
:
"Alex's Birthday"
,
"subtitle"
:
"Location: Alex's House"
,
"description"
:
"Buy birthday cake and some fruits"
,
"date1"
:
"2010-01-09T22:00:00.000Z"
,
"images"
: [{
"src"
:
"https://demos.telerik.com/kendo-ui/content/web/foods/4.jpg"
}, {
"src"
:
"https://demos.telerik.com/kendo-ui/content/web/foods/16.jpg"
}] },
{
"id"
: 4,
"title"
:
"Vacation in Mexico"
,
"subtitle"
:
"Location: Cabo San Lucas"
,
"description"
:
"Check-in for the flight"
,
"date1"
:
"2017-12-24T22:00:00.000Z"
}]
},
dataDateField:
'date1'
,
orientation:
"vertical"
});
Hi
I need for an test to modify original
dataSource: {
type: "odata",
transport: {
read: "http://demos.kendoui.com/service/Northwind.svc/Employees"
},
pageSize: 6,
serverPaging: true,
serverSorting: true
},
By an local file with changed data
I have tried without succes two change
First
dataSource: {
transport: {
type: "json",
read: "http://demos.kendoui.com/service/Northwind.svc/Employees?$format=json"
},
second test
dataSource: {
transport: {
type: "json",
read: "Employees.json"
},
Where is my mistake ?
Regards
I'm using a Grid with certain columns being editable. Clicking on an editable cell works fine. However, when that cell is not clicked, it's not obvious to the user that the cell may be editable by clicking on it. How can I make the cell look editable for the user?
Steve
Hi,
I was using the slide-in transition suggested here(https://docs.telerik.com/kendo-ui/controls/layout/window/how-to/window-as-sliding-pane#use-windows-as-sliding-panes) to change the existing windows to slide-in panes.
the example given in the link works perfectly for the latest version of kendo.(KENDO UI 2021-R1-SP1)
https://dojo.telerik.com/ODAwIMef
but if we change the version in the same dojo example to (KENDO UI 2020-R3-SP2), it doesnt work as expected, it doesnt slide-in, it doesnt show the close icon etc.
can you please help with this?
Hi Telerik,
As per title, is there a way to apply it?
How can we achieve keyboard navigation for a tile layout which has a kendo grid inside one of the tile?
to activate the widget the shortcut key is same i.e. alt+w.
the default example of tile layout has the grid inside tile.
https://demos.telerik.com/kendo-ui/tilelayout/index
hello,
I am using Jquery kendo grid. we added a page zoom size change feature with in our web application. The kendo grid is rendering fine on page zoom change, but the editors positions(appearing in the old position as it is at 100% zoom) are not adjusted according to the zoom change. Please find the zoom change function I am using and the screenshot with issue. Let me know if there is any fix for it.
function SetZoom(val) {
val = parseFloat(val);
var percentage = parseInt(val * 100) + "%";
$('body').css('zoom', percentage);
$('body').css('zoom', val);
$('body').css({ zoom: val, '-moz-transform': 'scale(' + val + ')' });
}
http://jsfiddle.net/qgw2mtcy/
We are trying to validate a grid has more than 1 row before the form submission is valid. For some reason the validation logic does not trigger the custom rule for the grid row count validation.
Hello, I'm find multi identifiable combo box. Is it implement?