Hi,
We have a need to test our application for different days of the year, we are doing this by setting a 'fake' system DateTime. I'd like to display this on the gantt via the currentTimeMarker. Is there anyway to override the datetime that this line uses either in JS or c#?
Thanks, Matt
This is probably a long shot, but thought I'd ask if anyone has any suggestions.
I've got a grid where the first column is a checkbox column for selecting rows. I've then added a kendoMenu to this column to provide actions to perform on the selected rows. However if I start re-ordering columns they get messed up in weird and wonderful ways.
We're on version 2013.2.918 and I've recreated the issue in a kendo dojo (try dragging Quantity Per Unit over to be the first column to see the error).
I've updated the example to the very next released version of kendo (2014.1.318) and the problem goes away. However due to project timeframes a kendo upgrade at this point would not be ideal.
Can anyone suggest a workaround (without upgrading kendo)?
Hello
I have grid with selectable columns
grid = gridDiv.kendoGrid({
dataSource: dataSource,
columns: [
{
selectable: true,
width: "50px",
}
],
});
kendoGrid = grid.data("kendoGrid");
Is there any event that triggers when select/unselect happens. I need to trigger some other events when selection is changing + set some properties on data item.
Thanks
With the addition of the selectable column, is there a way to default the column so that everything is selected when the grid loads?
https://demos.telerik.com/kendo-ui/grid/checkbox-selection
Hello
Is it possible to render grid under one invisible element, but show it in different one. Main problem is that showing element is disappear each time when user communicate with my app,If i generate new grid one each refresh selectable column in the grid stops working.
Can you guide me how to solve one or another problem.
I have a grid with endless scrolling. I want to load filtered rows to the grid. Any other operation shoud be performed on the client side.
I expect the grid will send a request only on a first grid loading and when I set a new filter.
Sorting, grouping, paging should be done on a client side.
BUT when I scroll down my grid endless scrolling is activating and grid sends a request to the server even if I set serverPaging to false.
My source code:
01.
function
loadGrid(profile) {
02.
$(
"#Grid"
).kendoGrid({
03.
dataSource: dataSource(profile),
04.
columns: profile.Columns ? JSON.parse(profile.Columns) : [],
05.
scrollable: {
06.
endless:
true
07.
},
08.
pageable: {
09.
numeric:
false
,
10.
previousNext:
false
11.
},
12.
groupable:
true
,
13.
sortable: {
14.
mode:
"multiple"
,
15.
allowUnsort:
true
,
16.
showIndexes:
true
17.
},
18.
filterable: {
19.
mode:
"row"
20.
},
21.
selectable:
"multiple cell"
,
22.
navigatable:
true
,
23.
resizable:
true
,
24.
reorderable:
true
,
25.
columnMenu: {
26.
filterable:
false
27.
}
28.
});
29.
}
30.
31.
function
dataSource(profile) {
32.
return
new
kendo.data.DataSource({
33.
type:
"webapi"
,
34.
pageSize: 50,
35.
transport: {
36.
read: {
37.
url:
"BI"
,
38.
type:
"POST"
39.
}
40.
},
41.
group: JSON.parse(profile.Groups),
42.
sort: JSON.parse(profile.Sortings),
43.
filter: JSON.parse(profile.Filters),
44.
serverFiltering:
true
,
45.
serverPaging:
false
,
46.
serverSorting:
false
,
47.
serverGrouping:
false
,
48.
serverAggregates:
false
49.
});
50.
}
Hi,
I want to make the datepicker .k-input completely accessible for which I need to separately call out MM when focus is on MM alone and similarly for DD and YYYY for day and year respectively. Is there some way via some jQuery custom code to achieve this functionality as well?