I'm not sure where else to post this. dojo.telerik.com won't accept any of the passwords I've used with Telerik. I tried resetting my password, but the reset-password page does not work. It appears to work in that I get taken to a page that says the password change was successful, but when I try to use the password to login, I am told Invalid Credentials and to please retry with valid credentials. I have followed the instructions here,
https://www.telerik.com/forums/locked-out-of-my-dojo-account-can't-change-password
opening up the password reset link in a new incognito window, changing the password there, getting the success page. Opening up a new incognito window to try to login and it fails. I have done this multiple times. I can forward someone the password request and the confirmation emails if you like.
Any advice?
Hello!
I have a Kendo Grid on my page and I have a few columns that are 'filterable' and 'multiselect' checkbox lists.
The top select option is "Select All" which selects all options, however this "Select All" option goes away once you search for anything.
What I need:
I need the "Select All" checkbox to remain after searching
I need the "Select All" checkbox to only select items that are shown. IE: I search for "W" and click 'select all' and only those items with "W" get selected.
Thanks!

Are there any plans to support branching in the stepper in the future? We're using the control to track progress on a set of long-running tasks, but we've run into a scenario where two tasks can be run in parallel with each other.
Thanks,
Will

In my project, I used Kendo Editor, Kendo DateTimePicker, Kendo Sortable and Kendo Upload. I want to apply the Content Security Policy for my site. And I met some problem about it.
According to the link: http://docs.telerik.com/kendo-ui/troubleshoot/content-security-policy, I have to use the 'unsafe-eval'.
But after I added the 'unsafe-eval', there still are errors about inline style, inline script and script URL. Please check the attached files.
After I added the 'unsafe-inline' to script-src and style-src, then all errors disappeared.
Just want to ask if the 'unsafe-inline' for script and style must be used for Kendo UI? Will Kendo UI support the strict Content Security Policy in the future?



hello,
When you make a grid scrollable it appears to create 2 tables one for the head and one for the body. This causes the WAVE tool to see the body table as a layout table, which can cause issues for screen readers. Is anyone able to confirm that making a grid scrollable still confirms with WCAG AA standard?
Thank you
Jack

Is it possible to resize image by dragging similar to crop is doing?
It would be nice addition.

Hi,
We have recently changed some legacy code which was calling a WCF API to populate the grid and it was using serverside paging. We have to use the same serverside paging but with C# datasource. How can we achieve this?
This is how the code was before when it used an API:
dataSource: {
type: "odata",
transport: {
read: dataUrl,
dataType: "json"
},
schema: {
model: BillingModel,
data: function (data) {
return data["value"];
},
total: function (data) { return data['odata.count']; }
},
serverPaging: true,
serverFiltering: true,
serverSorting: true,
sort: { field: "EncounterDate", dir: "asc" }
}
This was changed to use the c# datasource now:
dataSource: {
schema: {
model: BillingModel,
}
}
