Hi team, I have created a nested donut chart..but as per requirement I have to specify which one is inner and which one is outer, so that it's easy for the user to differentiate.
But currently for showing data I am already using tooltip, also using labels
What is the best way to stop text from wrapping in a tooltip when there is plenty of space to show on one line?
In this demo the text wraps. How can you force it to use an auto width, instead of fixed?
Hi, I try to turn your "Date Range Picker" widget into a "Year Range Picker".
Your widget give the options "start" and "depth". I believed that will be work well but absolutely not... When I use the both options, the widget stop to work.
I tried with your example in kendo ui dojo, this code :
<div id="example" style="text-align: center;">
<div class="demo-section k-content wide" style="display: inline-block;">
<h4>Pick a date range</h4>
<div id="daterangepicker" title="daterangepicker"></div>
</div>
<script>
$(document).ready(function() {
$("#daterangepicker").kendoDateRangePicker({
start: "decade",
depth: "decade"
});
});
</script>
</div>
I have kendo grid that consumes data from a service.I checked from the server side no doubles.
when i show all the records in the kendo grid no doubles.
The problem is when i paginate from page 1 to page 2 there is a record that i find in both pages.
Hello kendo,
When an user is entering the date with an invalid format like dd.mm.yyyy (so 27.06.2023) into our datepicker, it looks like the date is accepted in the UI, but the value is actually empty. What is confusing for the user. To fix this we would like to clear the value when an user entered an invalid date. How can we do this ?
I found an example for the datetimepicker, but it requires an initial filled in date, if you start with an empty value it's not working. The problem comes from the problem that it's impossible to tell if the value is empy or invalid.
https://docs.telerik.com/kendo-ui/knowledge-base/prevent-invalid-values
PS the script has an bug and is not working, add to following to the script to get it working:
$("#datetimepicker").kendoDateTimePicker({
change: onChange,
close: onClose,
open: onOpen,
value: new Date()
});
var lastValidDate = $("#datetimepicker").data('kendoDateTimePicker').value();
});
</script>
Regards,
Jeroen
https://dojo.telerik.com/EgiqeKug
I have a kendo dropdownlist with virtualization. I am including an optionLabel and a valueMapper. Unfortunately, including the valueMapper causes the option label to not show up. Is there a fix for this? Here is a dojo showing the issue.
I am showing pagination at bottom of Kendo Grid and data is coming dynamically, but when data is not there and the total parameter is 0 i am observing nothing in the pages. For this see the below screenshot
How we can resolve this issue?
$.ajax({ type: "POST", data: data, url: "IUA/Submit", success: function (result) { if (result.Id !== 0) { alert("Your application has completed the review phase and is confirmed complete. Your PIN will be " + result.Id + ". To complete your submission, please click the OK button below."); $('#loading').hide(); kendo.drawing.drawDOM($("#mainDiv")) .then(function (group) { // Render the result as a PDF file return kendo.drawing.exportPDF(group, { paperSize: "auto", margin: { left: "1cm", top: "1cm", right: "1cm", bottom: "1cm" } }); }) .done(function (data) { // Save the PDF file kendo.saveAs({ type: 'POST', dataURI: data, fileName: "IUAEnrollment.pdf", proxyURL: '@Url.Action("SavePDF", "IUA")', forceProxy: true, proxyTarget: "_blank" }); displayLoading("#formDiv", false); location.reload(); }); } else if (result.IsDuplicateRec == true) { $('#loading').hide(); $("#divDuplicate").show(); $("#captchaDiv").load(location.href + " #captchaDiv>*", ""); } else if (result.IsMVCCaptcha == false) { $('label[for="lblCaptchaErr"]').show(); $("#captchaDiv").load(location.href + " #captchaDiv>*", ""); setTimeout(WaitUntilLoad, 6000); } }, error: function () { $('#loading').hide(); alert("Error occured during the submission. Please contact helpdesk."); } });