

If you go to this page:
https://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx
And then go to the HTML tab and pasted this code in:
<div style="border: red 1px solid;" contenteditable="false" unselectable="on">
Non Editable AREA
<div style="border: green 1px solid;" contenteditable="true" unselectable="off">
<!--Content name="info" -->
Editable REGION...
<!--/Content -->
</div>
Non Editable AREA
</div>
Which is from the documentation page:
https://docs.telerik.com/devtools/aspnet-ajax/controls/editor/managing-content/editable-and-non-editable-areas
If you go back to the design tab, you are unable to type anything in the editable area. This works fine in the legacy edge (non-Chromium).
Also interesting is that you can delete things in the non-editable area.

Hello,
I want manually install the Telerick Web Part for SharePoint, but I don't understand how do download the .wsp file or where find it.
I just found the Telerik_Web_Parts_For_Sharepoint2013_2020_2_512_Dev.msi.
Thanks in advance

I was wondering if it was possible use the filter builder with the kendo grid?
I have been having a number of problems:
1) when i tried to use the Kendo MVC fluent to build my datasource external to the grid nothing ever got output to the page. ei no script was generated
2) when i created the javascript by hand the grid loaded i was able to associate it with the filter and the grid and it appeared i was able to build custom filters, but the filter never bound to the DataSourceRequest request.filter on the controller during a read. This is what is put into the querystring (note i manually put the canimpersonateonly=true)?canImpersonateOnly=True&take=50&skip=0&page=1&pageSize=50&filter%5Blogic%5D=and&filter%5Bfilters%5D%5B0%5D%5Bfield%5D=UvaId&filter%5Bfilters%5D%5B0%5D%5Bvalue%5D=ksa&filter%5Bfilters%5D%5B0%5D%5Boperator%5D=eq
Do you have any samples that use the external filter builder along with the kendo grid in asp.net mvc?
Thanks,
Logan

Can we upload large file using RadFileExcplorer without setting Maximum request length in web config file?

The link for the Medial Player from the controls overview is dead:
https://demos.telerik.com/aspnet-ajax/errorpageresources.aspx?aspxerrorpath=/aspnet-ajax/media-player/examples/overview/defaultcs.aspx
Marc

Hi everyone,
I want to visible RadwizardStep
Ex. I'm login website ID = a >> i want to show 3 Step
but i'm login ID = b>> i want to show 2 step
i use visible is not working
i use disable in css >> Tab is hide but Body Not hide
Please Help me.
Thank you.

I'm just getting started with the spreadsheet features. I need to create a blank workbook, make some modifications to it, and then display it in the spreadsheet control.
I've gotten this far
theWorkBook = new Telerik.Windows.Documents.Spreadsheet.Model.Workbook();
Telerik.Windows.Documents.Spreadsheet.Model.Worksheet theWorkSheet = theWorkBook.Worksheets.Add();
theWorkSheet.Cells[0, 0].SetValue("1");
RadSpreadsheet1.Provider = ???????theWorkBook);
So I've created the book and added a sheet, modified a cell, and now I want to display it in the grid. What is the syntax to display my sheet in the RadSpreadSheet?
Thanks!
