Telerik Forums
Kendo UI for jQuery Forum
1 answer
85 views

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

Stoyan
Telerik team
 answered on 22 Apr 2021
3 answers
157 views

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 :-)

Stoyan
Telerik team
 answered on 22 Apr 2021
1 answer
735 views

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
 

Nikolay
Telerik team
 answered on 21 Apr 2021
1 answer
265 views

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

Eyup
Telerik team
 answered on 21 Apr 2021
10 answers
1.1K+ views
Hi,
Would it be possible to select multiple selection without the control key pressed? This will be useful on touch based screens such as tablets and smart phones. Any suggestions? Thanks.
Anton Mironov
Telerik team
 answered on 21 Apr 2021
6 answers
685 views
How can I tell in event onDataBound if the chart has bound to any data? I would like to display a "No data available" message.
Eyup
Telerik team
 answered on 21 Apr 2021
1 answer
901 views

There is a code snippet in the _removeDescribedBy method

 

arrayAttr = target.attr (DESCRIBEDBY) .split ('')

In a specific, unknown situation, undefined is returned from the attr method, which generates an error with the following content:
Uncaught TypeError: Cannot read property 'split' of undefined

The solution is simple:
arrayAttr = (target.attr (DESCRIBEDBY) || '') .split ('')


Is it possible for the next version of kendo.ui to appear in all places where such a fragment of the code is protected against unedfined?
Aleksandar
Telerik team
 answered on 21 Apr 2021
2 answers
2.5K+ views

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

Nong
Top achievements
Rank 1
 answered on 20 Apr 2021
1 answer
471 views

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é

Aleksandar
Telerik team
 answered on 20 Apr 2021
11 answers
5.8K+ views
Hi,
I have a Kendo UI grid where the first column is readyonly:

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!

Anton Mironov
Telerik team
 answered on 20 Apr 2021
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?