Kendo UI editor refresh issue on Firefox after inserthtml - kendo-ui

I'm using the "inserthtml" command to insert HTML into a Kendo Editor:
var editor = $("#editor").data("kendoEditor");
editor.exec("inserthtml", { value: "<p></p><hr /><h3>Some Text</h3>" });
// and do refresh
editor.refresh();
When I do this in Firefox, the HTML tags will show as text instead of HTML content.
I also tested this on newer version of Kendo. Here's a demo on Kendo UI Dojo.
Is there a solution for this? Is it a bug in Kendo?

Looks like a bug to me. You can open a bug report here:
https://github.com/telerik/kendo-ui-core/issues

Related

Kendo Tab Scrollable not showing

i am using a bit old version of jquery kendo ui.My version is 2014.3.1411. Scrollbar is never showing when overflow occurs.it is coming in the next line.
i tried in different ways..but it doesn't work.
I uploaded a sample project.
https://1drv.ms/u/s!AsUSBVUzSefxgTvg1Ob-VPmWYuz0?e=StE2BG.
Is it the version issue.Please let me know
Scroll Function was not available in R2014 . Take a look a the dojo https://dojo.telerik.com/idoZUtuh
Functionality was introduced in R2017

Kendo Dropdownlist with checkbox and keyboard navigation

I am newbie in the Kendo UI in Jquery and looking Kendo dropdown list with checkbox selection,"Select All" option and keyboard navigation.
Luckily, I found example on google but it doesnt work in my version "Kendo UI v2018.1.221" and Jquery version "1.12.4"
Link :http://jsfiddle.net/b6ow4d2j/1/
If anybody have solution pleas help me out.
In the latest Kendo there is a new widget called DropDownTree that can work the same way if you only populate it with root items and set tagMode: "single". Here is a working dojo.

Kendo Button single click

Is there a Single Click button feature in Kendo Button widget like shown below in the example link (I know its WebControl for webforms app). I am looking for similar kind of functionality in Kendo MVC Wrapper/Core. Can someone please share the configuration settings either in Kendo MVC Wrapper or Kendo Core.
Example of Single Click in Telerik RadButton
http://demos.telerik.com/aspnet-ajax/button/examples/singleclick/defaultcs.aspx
You can easily achieve that functionality using jQuery, like this:
$("#myButton").one("click", function() {
'Code to run when the button is clicked.
});
You can read more about it here.

Kendo Ui Editor Image Browser CSS

I implemented Kendo UI editor with ImageBrowser functionality in my asp.net mvc application.
Kendo UI editor looks good but the ImageBrowser popup does have any css applied to it.
Is there any class using which we can apply CSS to the imagebrowser.
Thanks
Are you sure that you have loaded all the necessary CSS files? The ImageBrowser should be styled as well as the Kendo UI Editor.
Have you checked this documentation article:
http://docs.telerik.com/kendo-ui/web/appearance-styling

kendo ui Rich-Text editor - toolbar displays icons and links

I want to use Kendo UI rich text Editor inside of ASP.NET page, however when I run the application the editor toolbar is displayed with icons and links, I just want to display icons. How can I fix it?
View the image with the issue toolbar editor...
Normally text in editor icons is hided by setting font size to 0 in kendo CSS file:
.k-button-group .k-tool-icon{
font-size: 0;
}
If you have such behavior, you have instaled Kedno UI wrong or you are overriding their style.
To check if you have installed it correctly read the kendo instalation manual: http://docs.telerik.com/kendo-ui/aspnet-mvc/introduction
If everything is ok you should check in eg. Firebug tool why this font-size is not set to 0.

Resources