RadEditor is closing the source element that is nested inside the video element . For example, in the attached screen shots show the “source” element which we add it to Rich text field. After we save the Rich Text field and open it again, we see the source element is closed. Is there a configuration setting that would allow us to bypass the closure of the source element?
Hello,
I need to apply the default template to all cells without template in all grids throughout the existing application, for example:
<span class="some-css-class">FieldValue</span>
Is there a way to achieve this?
Thanks,
Dennis

we are working to fix the issue with Kendo-CSP for ASP.Net MVC with jQuery Kendo UI. In our application currently, we are using Kendo grids, dropdowns, and popups.
Initially, we have implemented the below changes for CSP.
Recently we got a new version of Telerik R1 2023, Replaced the below files for Upgrade.
we tried with new changes of kendo, without Unsafe prefix but it's throwing dynamic script errors, kendo controles not working. Our assumption is there are dynamic inline script Generations for Kendo controls which not contains nonce which may cause an issue.
We also tried with Deferred-Script but no use.
we are facing console issues related to Style and Scripts. Help me out.
Thanks.

Here is the code to show the list, it also has a part to show detail information by expanding the record, it shows the details first time you expand the record for some seconds and then clear them , and if you expand it again this time you can see details!
wonder if something triggered to clear the details or what, as it has the details so I don't think it would be matter of reading data!
@(Html.Kendo().Grid(Model)
.Name("LSGrid")
.AutoBind(false)
.NoRecords(x => x.Template("<div class=\"k-grid-norecords-template\">No records found that match your search criteria </div>"))
.Columns(columns =>
{
columns.Bound(p => p.Name).Title("Rail Infrastructure Manager").HeaderHtmlAttributes(new { style = "font-weight: bold" });
columns.Bound(p => p.Ref).Title("Line section ID").HeaderHtmlAttributes(new { style = "font-weight: bold" });
})
.Events(e => e.DetailExpand("detailExpand"))
.ClientDetailTemplateId("template")
.Pageable( pageable => pageable.ButtonCount(10))
.Sortable()
.Scrollable(scr=>scr.Height(300))
.DataSource(dataSource => dataSource
.Ajax()
.PageSize(20)
.ServerOperation(true)
)
)
<script id="template" type="text/kendo-tmpl">
@(Html.Kendo().Grid<Dto>()
.Name("grid_#=Id#") // template expression, to be evaluated in the master context
.Columns(columns =>
{
columns.Bound(o => o.Id).Title("State/Territory").Width(110);
columns.Bound(o => o.StartKm).Title("Start Km Point").Width(110);
columns.Bound(o => o.EndKm).Title("End Km Point").Width(110);
})
.Pageable()
.ToClientTemplate()
)
</script>

Can someone please help with the MVC wrapper syntax to accomplish this: https://docs.telerik.com/kendo-ui/knowledge-base/use-different-popup-editor-for-create-update
I would like to specify different template names for new and edit with two different cshtml editor template files

Hi all, I'm having some trouble with grid resizing, see pics below:
Expected:
Results:The only way around right now is to define .Width(xxx)
I've tried .Width("auto"), Custom css.
No error messages.
This project is an ASP.NET MVC project, and I'm using CDNs.
Grid's Code:
@(Html.Kendo().Grid<PDS.Web.Areas.Assets.Models.EquipmentModel>()
.Name("EquipmentDashboardGrid")
.Columns(col =>
{
col.Bound(m => m.EquipmentTypeName).Title(AssetManagement.Equipment_Type).Width(150).ClientGroupHeaderTemplate("#=value#").Hidden();
col.Bound(m => m.SortOrder).Title(AssetManagement.Equipment_SortOrder).Width(135).Filterable(false);
col.Bound(m => m.IsInstalled).Title(AssetManagement.Equipment_Installed).Width(130).Filterable(false).HtmlAttributes(new { style = "text-align: center" });
col.Bound(m => m.ExtendedDesc2).Title(AssetManagement.EquipmentDashboard_Equipment).Width(250).Filterable(false);
col.Bound(m => m.ExtendedDesc3).Title(AssetManagement.Equipment_Details).Width(250).Filterable(false);
col.Bound(m => m.OpenInspectionCount).Title("Open Faults").Width(140).HtmlAttributes(new { style = "text-align: center" }).Sortable(true);
col.Bound(m => m.InstalledDate).Title(AssetManagement.Equipment_Installed).Width(130).Filterable(false);
col.Bound(m => m.ScheduledRemoval).Title(AssetManagement.EquipmentDashboard_ScheduledRemoval).Width(130).Filterable(false);
col.Bound(m => m.RemovalDate).Title(AssetManagement.Equipment_Removal).Width(130).Filterable(false);
col.Bound(m => m.LastSavedDateTime).Title(AssetManagement.Equipment_LastSaved).Width(175).Filterable(false).Sortable(true);
col.Bound(m => m.CreatedDateTime).Title(AssetManagement.Equipment_Created).Width(175).Filterable(false);
col.Bound(columns => columns.EquipmentTypeNameSort).Width(175).ClientGroupHeaderTemplate("#=value.split('_@@')[1]#").Hidden(true);
col.Bound(m => m.EquipmentID).Title(AssetManagement.Equipment_ID).Width(145).Hidden(false);
col.Bound(m => m.EquipmentTypePrefix).Hidden();
})
.Sortable()
.Scrollable()
.Selectable(selectable => selectable.Mode(GridSelectionMode.Single))
.Resizable(resize => resize.Columns(true))
.Reorderable(reorder => reorder.Columns(true))@(Html.Kendo().Grid(Model.Factures)
.Name("gridSelection")
.Columns(c =>
{
c.Bound(f => f.Id).Visible(false);
c.BoundDate(f => f.DateDebut);
c.BoundDate(f => f.DateFin);
c.BoundDate(f => f.DateFacturation);
c.Bound(f => f.NumeroActuel);
})
.Editable(e => e.Mode(GridEditMode.InCell))
.Pageable()
.Navigatable()
.Scrollable()
.DataSource(d => d
.Ajax()
.Batch(true)
.ServerOperation(false)
.Model(m => m.Id(p => p.Id);
.Update(a => a.Action("Sauvegarder", "ModifFactures", GetBindParams("Update")).Data(KendoJSCall.JSGetAntiForgeryToken))
.Events(e => e.RequestEnd(KendoJSCall.OnGridCheckResults))
)
)I have a grid with the DataSource property specified as:
.DataSource(dataSource => dataSource
.Ajax()
.PageSize(10)
.Events(e=>e.Error("getPoliciesError"))
.Read(read => read.Action("Applications_Read", "MultiSearch")
.Data("getPolicyFilter")
)
)
Initially, I was not specifying PageSize at all, however, when Applications_Read was called, PageSize was always 10 (which is what I wanted) so I assumed that was the default. Then we started getting errors where it was coming through as 0. So I added the PageSize method on the initializer. Now the error where it comes through as 0 is rare, but still happens occasionally.
Has anyone encountered this? For now I can fix it by just adding code to the Applications_Read method saying if it comes through as 0, set to 10, however that will be irritating as we add many more grids with different and possibly customizable page sizes.