Hi,
Every widget that supports control of visibility configuration uses "VISIBLE", but when using MVVM to control HTML objects it is: data-bind = "invisible: someThing" . This IMHO is inconsistent, counterintuitive, and adds complication. If you are controlling the visibility of a mix of Kendo and HTML objects on the same bit of data, you need to duplicate it with a negated version or resort needlessly to templating logic. Maybe I'm missing something but this seems like a no-brainer.
Thanks,
Will Dougherty
HY,
i need a or advanced and user friendly tablet edit and format (for example: cell context menu for formatting, multi cell select for formatting and merge, and so on )
( i want replace all external editor in my application for the Kendo Editor, but i need more user friendly table and image format/edit functionality, some like the other WYSIWYG editor (ChkEditor, TinyMCE,...) )
Nice feature will we the document format with text flow ( like google docs), so i can do a document in a A4 page size and flow text over the pages.
Thanks
Hy,
in the editor i need this feature:
image: resize, crop, flip and filter
Thanks,
João Duarte
Our application is using lots of hierarchical grids to show business data, as it's really hard to scroll thru so many columns, is it possible to support column locking for top level grid? I saw documentation shows column locking doesn't work with row template with detail feature. This requirement is really importantant for us.
After contacting support, they suggested to log feature request.
Any questions, let us know.
Thanks
Annasaheb Rahane
QAD Inc.
There are situations where I want to know more about what triggered certain event in kendo (for example if ctrl button was down when clicking) but library won't let me because original browser events don't make it all the way up. Examples:
* select/change event for tree view
* change event for grid
I wish there was a field originalEvent on the argument so I can look at it.
element.kendoTreeView(
{
select: e =>
{
let isCtrlDown = e.originalEvent.ctrlKey;
}
});
Hi,
I have a grid. from which if the user selects multiple rows, we want to display corresponding PDF files into PDF viewer. I have checkbox as 1st column of the grid. It will be great if there is an API method that would allow the loading of multiple files.
Similar to the PDF Viewer, please could you make a Word Document Viewer?
Thank you!
Step by step instructions on how to reproduce the problem:
Code snippets:
var tabStrip = $("#contentlessAppend").kendoTabStrip({}).data('kendoTabStrip');
tabStrip.append({
text: "noContentAppend",
//content: "With content" //Uncomment this line for normal functionality
});
tabStrip.insertBefore({
text: "contentInsertBefore",
encode: false,
content: `<div id="WhereAmI">I am not where I should be</div>`
}, tabStrip.tabGroup.children().eq(0) );
Screenshots of the problem:
(N/A)
Stack trace, if applicable: N/A
Project and its dependencies which illustrates the problem (stripped, in zip format):
(see attached)
As a developer, I want to be able to add paragraphs with empty content and not have it stripped, so that I can add custom functionality, like icons.
I want to be able to control if the paragraph's content should be stripped or have the editor allow empty elements when they have classes.
Currently, if I add markup similar to a font awesome icon or some custom icon in a paragraph, there is a function, _fillEmptyElements, that strips the content of the paragraph:
Input:
<p> <i class="fa fa-check" style="color: green;"></i> </p>
or
<p> <span class="customicon icon-iconname"></span> </p>
On save, the paragraph's content is stripped to:
<p> </p>
As a workaround, I can add dummy text in the paragraph:
Hello,
The function kendo.support.mobileOS is returning false when on Chrome browser using Huawei mobile, model MRD-LX1F.
If using Firefox on same mobile, it returns true.
Android version is 9
EMUI versio 9.1.0
my contact : fuadk@gordano.com
or fuadks@gmail.com
Regards
Fuad
When there is a DOM element with "page-break" class inside an element that is about to be exported to PDF, this "page-break" results in a new page in the reported PDF file.
If we hide the parent element in which the element with a "page-break" class is nested and export the content to PDF, in the result file, the content of the hidden DIV is not displayed but there are blank pages for each "page-break" class that can be found in the hidden element.
There are two blank pages at the beginning of the exported document. Each of these pages is a result of the "page-break" CSS classes inside the "#test" element
The "page-break" class should not result in the exported file if it is nested in a hidden element. Here is a Dojo demonstrating the correct behavior: https://dojo.telerik.com/iZAXiZEz
Hi,
I'm using the Grid version 2019.3.1023 but changelog for newer version doesn't seem to show this has been fixed.
Using Html.Kendo().Grid().Columns(columns => colums.ForeignKey(x => x.ForeignCol, data, "value", "label"));
If data contains html, it will not be escaped when the javascript for the kendoGrid component is rendered, and thus is exposed to XSS.
This should be either fixed or documentation and samples must tell explicitly we need to html encoded the data, as this is not the case for the model itself.
It would be nice to have onClick callback as a part of drawing props in spreadsheet.
Scenario:
When I have more than one image on a spreadsheet, on click of those images I want to get info about the image more specifically range of the topLeft cell the image is attached to.
I have explained a lil bit more here, and I also have a work around here for now but if we have onClick call back it will give us bit more control over the images in spreadsheet.
The event handling between DatePicker and DateTimePicker is inconsistent.
If I manually type a date into DatePicker and tab away from the input, the change event is triggered
If I do the same in DateTimePicker, no event is triggered
They should behave the same, of course DateTimePicker should also trigger whether or not the user types in a time
Inserting a column in between columns that have been populated from a DataSource on Spreadsheet Sheet
Hi Team
We develop under Aurelia Framework and use KendoUI components.
It would be nice if there will be an update of the "Aurelia Kendo UI Components Catalog".
By complementing components used by "Jquery components catalog" with examples for Aurelia users that uses Typescript.
Mostly it is hard to find good tutorials for Aurelia + KendoUI users.
Best regards,
Thomas
Describe the bug
Once the Tooltip is shown for a target with short title, if opened for a target with longer title, its width is not updated properly. The shortest width is persisted. Reproducible in all SASS themes, not reproducible in the LESS themes.
To reproduce
Steps to reproduce the behavior:
Expected behavior
The Tooltip should resize properly to fit the title of the element it is shown for.
Screenshots
Affected package (please provide)
Affected suites (please provide)
Affected browsers (please provide)
Build system information (please provide)
Additional context
N/A
Changing order of columns by dragging by column header is cool (and should stay), but this scenario is inefficient for large number of columns (more than 10-20).
I suggest to add drag&drop feature to Grid/TreeList column menu (where i can show and hide columns already) to change order of columns.