KendoReact Editor not working in NextJS application.
This is the error:
ReferenceError: navigator is not defined.
The error can be reproduced in our NextJS application as well when adding the Editor component.
The error may occur due to this line:
const firefox = /Firefox/.test(navigator.userAgent);
i am using KendoReact Drawdom version 1.5.12
I have some input elements for uploading images, and showing the a preview of uploaded image.
I want to export a PDF version of the form, but drawDom.cloneNodes() throws an exception when handling input elements of type file. that is because these type of input elements can not have value attribute.
On your Grid Demos: When ever you try to edit a text cell the cursor always goes to the end of the text box
For example, go to your demo:
https://www.telerik.com/kendo-react-ui/components/grid/editing/editing-inline/
- Edit the first row. Try to type something before "Chai" - the cursor will jump to the end of the textbox
Hi
Please add SignalR support for grid and other controls similar to Kendo UI for jQuery.
Thank you
Hello,
We need to create a DateTime Picker with max and min limit on Date and also Time.
Currently, the range works as of 22/09/2019 5:30 AM to 21/09/2020 5:30 PM, where complete 24 hrs is been selectable.
We need the time range to be restricted per day. For instance, in the above example, it should be 5:30 AM to 5:30 PM per day from 22/09/2019 till 22/09/2020.
Thanks in advance.
Hello,
I would like to request the support of the search panel within the grid component same as in ASP.NET Core UI (https://demos.telerik.com/aspnet-core/grid/search-panel)
Thank you
Q:
From the last conversation through the webinar
jQuery Filter looks cool! What about Kendo React Filter?
Right now we do not have a KendoReact Filter component, but feel free to drop us a line in our feedback portal and we will consider implementing it.
Hi,
I created a solution using KendoReact Editor.
The editor is set to enable the creation of tables (EditorTools.InsertTable).
When the property 'defaultEditMode' is set to 'iframe', the editor inserts a correct table with a width of 100% and visible cell borders.
If I set the 'defaultEditMode' to 'div' and insert a table the table has a width of some pixels and no borders are shown. In other words, the inserted table is not usable.
I need to set the editMode to 'div' because otherwise the editor doesn't adjust its look to the other parts of the page. The font is wrong etc.
How can I get the tables to work in 'div' mode?
Kind regards
Christian
When using the Editor tools from https://www.telerik.com/kendo-react-ui/components/editor/tools/, the hyperlink option is disabled until I type AND select the typed text in the editor. Because the hyperlink allows for a title and a link, I believe it should not be disabled.
Also, when adding the hyperlink and title, the title does not appear in the editor
For example:
I have an empty editor with no text.
I cannot click the hyperlink option - it is disabled. (Bug 1)
I type 'hey' into the editor and highlight it (select it).
I can now click on the hyperlink option.
I type in 'http://imstilloscar.com' for the Web Address.
I type in 'Oscar' for the title. (It does not matter if I click open in new window or not).
Click Insert.
The title 'Oscar' does not appear in the editor. (Bug 2)
The editor still contains the word 'hey' and links you to 'http://imstilloscar.com'
Problem:
The DateTimePicker does not work in IE11 due to it's failure to fully support the shorthand syntax for flex (https://github.com/philipwalton/flexbugs#flexbug-4). In order for it to work in IE11 flex-basis needs a unit defined and therefore does not support calc() in this scenario.
Potential Fix:
If you break out flex-grow, flex-shrink and flex-basis then calc() can be used for flex-basis.
Hello Kendo React Team,
Here are a few bugs to address on the Kendo React Scheduler (3.6.0)...
Issue 1: November 3, 2019 Repeated on Week/Month Views
Visit https://www.telerik.com/kendo-react-ui/components/scheduler/views/month/ or https://www.telerik.com/kendo-react-ui/components/scheduler/views/week/, navigate to the first full week in November 2019. You will notice that 11/3 is repeated for Sunday/Monday. I'm wondering if this issue is related to daylight savings time. The calendar does not have a timezone configured (just uses the default UTC and my local timezone is PST).
Issue 2: Clicking an empty all day slot does nothing.
The onSlotClick callback should be fired when clicking on an all day event. I currently have to add an event listener using document.querySelectorAll("[data-slot-allday='true']"); to get the right behavior (definitely not ideal).
Issue 3: onItemDoubleClick and onSlotDoubleClick do not work on mobile devices.
My current solution to get everything to work on desktop and mobile is to use the onItemClick and onSlotClick and to not integrate useCallback with double clicking.
Suggested Improvements:
<Grid
style={{ height: '400px', width: '500px' }}
data={products}
reorderable
>
<Column field="ProductID" title="ID" width="45px" locked />
<Column field="ProductName" title="Name" width="250px" />
<Column field="Category.CategoryName" title="CategoryName" />
<Column field="UnitPrice" title="Price" width="90px" />
<Column field="UnitsInStock" title="In stock" width="90px" />
<Column field="UnitsOnOrder" title="On order" width="90px" />
<Column field="Discontinued" width="120px" locked={true} />
<Column field="QuantityPerUnit" title="Additional details" width="250px" />
</Grid>
Whether the Treelist supports multi column headers ,Nest columns in the columns definition?
Like the Grid
https://www.telerik.com/kendo-react-ui/components/grid/columns/headers/
Hello
There was an error calling “ chart.surface.redraw() ”
onRender = (args,mapValues,stackedOrderBy) => {
const chart = args.target.chartInstance;
const valueAxis = chart.findAxisByName("valueAxis");
const categoryAxis = chart.findAxisByName("categoryAxis");
if (!chart) return;
let x= 1;
if( stackedOrderBy!="Ascending")
x=-1;
let axis = categoryAxis.options;
axis.categories = axis.categories.sort(function (a, b) {
if (mapValues[a] < mapValues[b]) {
return -1*x;
}
if (mapValues[a] > mapValues[b]) {
return 1*x;
}
return 0;
});
chart.surface.redraw();
Add render prop for the SplitButton.
This will allow changing the main button and also the button that opens the DropDownList.
In the case of multiple columns headers, the column width of the KendoReact TreeList is invalid