Hi,
I would like to suggest an improvement for the documentation - it would be very useful, by my opinion, to add the link to release history directly to widgets.
Idea is that link displays only list of releases that really affected the widget, so if you are looking for a specific change on specific widget, you see it directly, not through browsing complete release history.
I am aware that in ideal world, we would update local library in parallel with releases, but it's not a case for most dev teams.
Thank you!
Best regards,
Vedad
I have noticed that the function kendoForm is missing in kendo.all.d.ts (v2021.1.119)
Is that an oversight, or is Telerik trying to tell me something :-)
I have using kendo component with angularjs framework & using Kendo UI v2014.3.1119 version.
Now i am tring to use Kendo Grid control with multiple column grouping with aggregate function.
As you can see in this "http://dojo.telerik.com/UtoDErOc" example. Given Example implement with two characteristic group.
1. Material
2. Color
so grid display record correctly as per group but problem is found that footer level group display wrong sum quantity that you can see in attachment snapshot.
once i change version to 2014.3.1411 it working fine. so i want to ask that if i want to achieve same in my currenct version then it is possible or not.
Thank you in advance
I have a problem expanding the detail row of the kendo grid. My grid is filled with 3 level data and sometime can be up to 4 level.
When I expand all the detail row in the grid, the last level's grid become shrink and I cant figured it out.
here is my code: https://dojo.telerik.com/UJAnAHAr
There is a code snippet in the _removeDescribedBy method
arrayAttr = target.attr (DESCRIBEDBY) .split (
''
)
arrayAttr = (target.attr (DESCRIBEDBY) ||
''
) .split (
''
)
When running the code below, the first selected row updates but the next one throws a "Cannot read property 'set' of undefined".
I have the datasource batch set to true and am using dataItem for each selected row and setting the value from there.
var
grid = $(
"#grid"
).data(
"kendoGrid"
);
var
selectedRows = grid.select();
if
(selectedRows.length > 0 && unit !=
""
) {
$.each(selectedRows,
function
(i, row) {
var
data = grid.dataItem(row);
data.set(
'UnitsInStock'
, unit);
});
grid.saveChanges();
}
Here is a dojo sample of it http://dojo.telerik.com/aFIwuYUs
Hello,
please check this example: https://dojo.telerik.com/EVEToriY
When tooltip is used with DatePicker, it shows over picker icon. Is there any way how to display it next to icon and not next to input?
I know I can use offset property to move it, but it is little hack for me.
Regards
René
schema: {
data: "data",
model: {
id: "ID",
fields: {
firstName: { editable: false },
lastName: { validation: { required: {message: "Must not be empty!"}} }
}
}
},
In edit mode this is just fine, but if I want to add a new row/item then of course the firstName should be editable.
How I can get this working?
I tried to find a 'best practice' but seems to be not so easy.
Is there any 'best practice'?
Thanks a lot!