Hello,
I am using Kendo version Kendo UI v2020.2.617 in our project, I have implemented custom fonts in the fonts family tool. When I select any text to change its font for some instances, the selection gets held until the time I select the font and after the font selection is completed. Still, when I select the text and try to open the font dropdown, the selection is getting deselected, which means the selection is not getting hold in the editor.
Even I faced the same issue for the default fontName tool when I implemented it before trying the custom.
Will you please help me with what might be the possible reasons for it?
Code which I implemented -
{
name: "fontName",
items: [{
text: "Andale Mono",
value: "Andale Mono"
}, {
text: "Arial",
value: "Arial"
}, {
text: "Arial Black",
value: "Arial Black"
}, {
text: "Book Antiqua",
value: "Book Antiqua"
}, {
text: "Comic Sans MS",
value: "Comic Sans MS"
}, {
text: "Courier New",
value: "Courier New"
}, {
text: "Georgia",
value: "Georgia"
}, {
text: "Helvetica",
value: "Helvetica"
}, {
text: "Impact",
value: "Impact"
}, {
text: "Symbol",
value: "Symbol"
}, {
text: "Tahoma",
value: "Tahoma"
}, {
text: "Terminal",
value: "Terminal"
}, {
text: "Times New Roman",
value: "Times New Roman"
}, {
text: "Trebuchet MS",
value: "Trebuchet MS"
}, {
text: "Verdana",
value: "Verdana"
}, {
text: "Webdings",
value: "Webdings"
}, {
text: "Wingdings",
value: "Wingdings"
}]
}
Thank you
I am trying to add a tooltip to my page that covers the element it is triggered on. When I do so, it flashes instead of staying on. Here is a dojo. Hover your mouse over the text and see it flash.
https://dojo.telerik.com/AsoDIzAC
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Kendo UI Snippet</title>
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/themes/7.2.0/default/default-ocean-blue.css"/>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://kendo.cdn.telerik.com/2024.1.130/js/kendo.all.min.js"></script>
</head>
<body>
<span id="target" title="Tooltip content">
Some content
</span>
<script>
$(document).ready(function() {
$("#target").kendoTooltip({
position: "center",
callout: false,
showAfter: 1000
});
});
</script>
</body>
</html>
Hi,
Are there any new properties that have been added in version 2022.3.913 where we can defined the width/height of the labels within the axis.
If the labels are set for 20% and the text is longer than the space defined then it will add ellipses for that section.
Similar to the image below.
Thanks!
I'm trying to set margins when exporting to PDF using the Drawing API and can't get it to work. Here is a dojo. When you click the button to get the PDF, there is no margin around the chart. I'm assuming I'm doing something wrong, but not quite sure what.
Dear developer:
I made a calendar to user with kendoMultiViewCalendar , but I didn't know how to append a hyperlink to each date.
Each gridcell HTML was looked like:
<td role='gridcell' class>
<a tabindex="-1" class="k-link" href="#" data-vale="2024/0/18"> 18</a>
</td>
I tried to use template to do it, but found out that I only could make some style on the "data.value", was not able to change the attribute "href" of the up node "a" .
Could anyone help me with that?
I have a kendoGrid, on initial load I am able to see the pagination being set and datasource.total has some value:
On Initial load:
When I click on the default "cancel" option from my toolbar, the total is "undefined".:
OnCancel:
I can see the data in my grid, but the pagination footer displays "No items to display"
I try to use this code
but is not working
always return -1
var tabStrip = $("#tabstrip").kendoTabStrip().data("kendoTabStrip");
tabStrip.select().index()
Can't I change Numerictextbox to kendoTextBox?
Can I change Numerictextbox to kendoTextBox format with special coding?
Please change numerictextbox in the url below to kendoTextBox.
https://dojo.telerik.com/uLIzaDag
Please enter coding in the area below /* start code */
It may be very easy or it may be very difficult.
Please make it a success. thank you.
Hii,
We are using Kendo version Kendo UI v2020.2.617 in our project, can you please help me out with how I can implement cut, copy, and paste inside the Kendo UI?
Will cut, copy, and paste be implemented and released in the upcoming releases ? or if not could you guide me in how I can implement it in our project?
Thank you.