Hello,
I am a developer supporting a web app written in PHP that uses Kendo UI v2016.1.226. Recently I have been seeing a console warning in Chrome stating that document.registerElement calls are deprecated and will be removed in M73, March 2019. It also states to use window.customElements.define instead.
My question is has later versions of Kendo UI (specifically kendo.all.js) adjusted those calls? The call I am being prompted on is on line 119478 and is part of a Kendo Library Function. What version would I need to upgrade to in order to clear this warning? Is the registerElement function affect PHP Users or Just Angular?
Is it possible to stack in a waterfall chart ?
please see example attachment.
Thanks in advance,
Ludovic
Dear Telerik,
I have a Kendo Grid with a kendoComboBox column.
The kendoComboBox is filled with remote JSON-Data and the input's 'required'-property is added. ('<input required ).
The validation of the required property is working, but only after I first focused the combobox-column or I first selected the combobox.
When I do not touch the combobox-column and click the save-button immediately, the validation is not done and the server gets an empty value.
Is there a way to validate and display the required message underneath the combobox after pressing the save button ?
Regards,
Henri
There are always have a row gap in group row. (see image)
I'm trying to reduce row height. but it does not work.
Anyone tell me how to do this.
Regards,
Yonghan

Hi,
When I paste image to the kendo editor it inserted as base64 image tag.
After that I am sending the content of the editor by mail, since many email clients blocking base64 images.
I want to disable this functionality in my project.
Please let me know how I can do it.
Thanks,
Hi,
Is there a way to add content to the end of a pdf document? I wish to show a signature at the end of the document only. Every time I try this, the signature is added at the end of every page. I only want to show it on the last page. Is this possible?
I am using the pdf export from the kendo ui grid.
Hi
I'm trying to add different behaviors if the user click "Delete/Edit serie" or "Delete/Edit occurrence". I will like to know if there is a way (I know you have it ;)) to know which option the user select in the "dialog".
Thank you in advance!!
@(Html.Kendo().Grid<Admin.Models.FileToken>().Name( "mygrid" ) .Columns( columns => { columns.Bound( f => f.Title ).Width( "70%" ); columns.Bound( f => f.Size ).Width( "20%" ).Format( "{0:N2}MB" ); columns.Bound( f => f.DataPath ).Width( "10%" ) // Doesn't work .ClientTemplate(Html.ActionLink( "Run", "ProcessFile", new { path = "<#= DataPath #>" } ).ToHtmlString() ); } ) .DataSource( source => source .Ajax() .Model( model => model.Id( key => key.DataPath ) ) .Read( reader => reader.Action( "GetDataFileTokens", "Dashboard" ) ) ) )I've tried to simplify the code as much as possible with this example:
https://dojo.telerik.com/aJARADIk
If I create a chart with a shared tooltip, I can switch back and forth between shared and unshared tooltips without issue. If I create a chart with an unshared tooltip and try to set shared = true in the options, then redraw the chart, the tooltip will not display on hover. It will display on click, but even showOn = "mouseenter" will not help.
I've compared the options objects between the two charts in the example and they are essentially identical with a few spots where the series tooltip is still false or the font is set. The commented out code is meant to show that fixing these differences does not make this work.
At this point, I'm assuming that creating the chart with shared = true does something that shared = false does not, e.g. registering events for the shared tooltip, but I can't figure out what it is. Is there something that needs to be done in addition to setting shared = true or is this a bug that needs to be reported?
<div data-role="grid" id="IGrid" data-editable='true' data-columns='[ { "field": "Description", title: "Description"}, { "field": "OriginalAmount", title: "Amount", width: "100px", editable: function () { return false; }, template: kendo.template($("\\#GstAmount").html()), footerTemplate: "Total: #=sum#") }, {command:[{name:"destroy"}]} ]' data-bind='source: GST.GSTBreakup ,events: {dataBound: parent().GridDataBound}' style="height: 200px"></div>