Unplanned
Last Updated: 12 May 2021 07:04 by ADMIN
Created by: Abhinav Mishra
Comments: 1
Category: KendoReact
Type: Feature Request
1

Hi Team,

We are using Kendo react scheduler in one of our project. We need a custom marker in a scheduler control similar to current date time marker in a Timeline view. I have attached the image for reference.

Please let us know if there is any property available or any other ways to achieve this functionality. Also, how can we place it properly in a scheduler slot based on specific date and time like May 12, 2020 13:40.

Regards,

Abhinav

Unplanned
Last Updated: 06 May 2021 09:44 by ADMIN
Created by: AndreasW
Comments: 0
Category: KendoReact
Type: Feature Request
8
We need a prop that will allow changing the color of the tasks.

Similar to how it is done in Kendo UI for jQuery:

https://docs.telerik.com/kendo-ui/controls/scheduling/gantt/how-to/colorizing-tasks
Unplanned
Last Updated: 06 May 2021 04:47 by ADMIN

Can the Kendo UI Multiselect possibly select the "active" item when tab is pressed? It currently does this for the enter key.

 

We are building a Typescript Create React App application, and we would really like to be able to allow our users to type a partial entry and then allow tab to complete the selection and move on to the next input.

 

I tried to make it have this behavior but it became a fairly large mess and seems like it could be facilitated in the source code with less mess.

Even possibly just exposing access to more events would make it easier, like an onKeyDown, but that would still require some additional code to figure out what the current active item is.

Currently using these below, not sure what "Version" below in this form those belong to so I just guessed:

"@progress/kendo-react-inputs":"^3.9.0"

"@progress/kendo-react-dropdowns":"^3.9.0"

Unplanned
Last Updated: 05 May 2021 08:09 by ADMIN
Created by: Abhinav Mishra
Comments: 3
Category: KendoReact
Type: Feature Request
2
Displaying additional information like User Email, Department, etc. in a Tooltip when the user mouse is over on any Resource from Scheduler Dashboard and also to display more information (like User Name, Flag image, some other additional fields) in the Resources.
Unplanned
Last Updated: 04 May 2021 11:39 by ADMIN
Created by: Grant
Comments: 1
Category: KendoReact
Type: Feature Request
2

WHAT:
Add custom cell rendering option for MultiColumnComboBoxColumn. Just like the 'cell' in GridColumnProps.

Unplanned
Last Updated: 29 Apr 2021 05:01 by ADMIN
Created by: n/a
Comments: 1
Category: KendoReact
Type: Feature Request
0

Please provide alphabet OrderedList tool.

Example:

a. apple

b. orange

c. banana

Unplanned
Last Updated: 28 Apr 2021 04:51 by ADMIN
Created by: Ashutosh
Comments: 4
Category: KendoReact
Type: Feature Request
1
How can I display "No Data" message on React charts if chart is bind with data but data is Empty?
Unplanned
Last Updated: 28 Apr 2021 04:38 by ADMIN
Created by: Rokan
Comments: 1
Category: KendoReact
Type: Feature Request
0

 

I am trying to create a radial gauge with gradient fill but I don't see any help regarding this. Please see the below image of what actually I am looking for. 

 

Completed
Last Updated: 27 Apr 2021 10:49 by ADMIN
Created by: Brian
Comments: 2
Category: KendoReact
Type: Feature Request
1

I am using ExcelExport...

import { ExcelExport, ExcelExportColumn } from "@progress/kendo-react-excel-export";

 

one of the columns being exported is an Enum value.   Is it possible to export the data and have the excel column be a dropdown picklist?  I've attached a file of an example

 

Thanks

 

Unplanned
Last Updated: 27 Apr 2021 10:46 by ADMIN
Created by: marco
Comments: 1
Category: KendoReact
Type: Feature Request
2

Is it possible to have a multirange support in the RangeSlider like the following (https://zillow.github.io/react-slider/):

It could be helpful to get multi range values using only one component. Easier for the developer to manage the data and for the user to select it.

 

 

 

Unplanned
Last Updated: 27 Apr 2021 10:46 by ADMIN
Created by: Sandeep
Comments: 1
Category: KendoReact
Type: Feature Request
1

Hi,

How to select the tree-list column like excel column selection ?

How can be copy selected column data with the another column  ?

 

please provide the reference link or example.

 

 

--

Unplanned
Last Updated: 27 Apr 2021 10:44 by ADMIN
Hi,

The KendoReact Upload Component is designed to send files from file systems to dedicated server handlers, however we would like to use it to send files as byte arrays in form submission. A workaround has been provided here: https://www.telerik.com/forums/kendoreact-upload however we would like to see if there is any community interest in this becoming a standard feature.

Thanks


Declined
Last Updated: 27 Apr 2021 10:44 by ADMIN
Created by: Aske Hippe
Comments: 1
Category: KendoReact
Type: Bug Report
0

The navigation sidebar smooth scroll animation doesn't work for the Calendar component.

Here is a codesandbox that showcases the issue: https://codesandbox.io/s/hopeful-river-sk4oc?fontsize=14&hidenavigation=1&theme=dark

Thanks in advance for fixing this :-)

 

Unplanned
Last Updated: 27 Apr 2021 10:43 by ADMIN

Add an option to show a callout (arrow) element for the Chart tooltip.

Similar to the Tooltip component option:

https://www.telerik.com/kendo-react-ui/components/tooltip/api/TooltipProps/#toc-showcallout

Declined
Last Updated: 27 Apr 2021 10:42 by ADMIN
Created by: Aske Hippe
Comments: 1
Category: KendoReact
Type: Bug Report
0

Hi there!

I've written this component for a custom message input box for the Chat in Conversational UI for React:

import { ChatMessageBoxProps } from '@progress/kendo-react-conversational-ui'
import { FC } from 'react'

const CustomChatMessageBox: FC<ChatMessageBoxProps> = (props) => {
  return (
		<>
			<input
				type="text"
				name="message"
				className="h-full w-full text-base md:text-sm focus:outline-none"
			/>
			{props.sendButton}
		</>
  )
}

export default CustomChatMessageBox

I'm supplying this component to the `messageBox` prop of the Chat component. However, sending the message doesn't work; neither by pressing enter or pressing the send button. If I replace the input with props.messageInput, it works.

Any help in fixing this will be greatly appreciated!

Thank in advance :-)

Completed
Last Updated: 27 Apr 2021 10:41 by ADMIN

When changing the popup setting "appendTo" to a different element that has a wider width then the input of the dropdown multiselect is not working properly.
The dropdown is attached to that element but the styling is not changing to that parent and is just taking the width of it initial parent.

Example can be found here:

https://stackblitz.com/edit/react-wwhosr-awnrdm?file=app/main.jsx

 

When using the standalone popup control this is working as it should and adjusting it's width based on the parent it's appended to.

Completed
Last Updated: 27 Apr 2021 10:41 by ADMIN
Created by: Matej
Comments: 4
Category: KendoReact
Type: Feature Request
1
Chat input where user can hit "Shift + Enter" to manually separate lines.
Unplanned
Last Updated: 27 Apr 2021 10:40 by ADMIN
Created by: Brian
Comments: 3
Category: KendoReact
Type: Feature Request
1

Is there a TimeSpan picker control.   I need to pass in the Ticks and allow the user to change the Days, Hours, Minutes, etc...

 

 

Unplanned
Last Updated: 27 Apr 2021 10:39 by ADMIN
Created by: Eli
Comments: 1
Category: KendoReact
Type: Feature Request
1

1) Use this StackBlitz application: https://react-scwx3i.stackblitz.io - This is based on Telerik's own DatePicker React example.

2) Highlight the AM/PM section.

3) Try to change the AM/PM section via typing. It doesn't change. Note that other fields in the date/time picker are responsive to keyboard input.

Expectation is that the AM/PM section should respect at least "A" and "P" inputs.

Unplanned
Last Updated: 27 Apr 2021 10:37 by ADMIN
Created by: Matteo
Comments: 0
Category: KendoReact
Type: Feature Request
1
Provide a visual prop for the Chart GridLines.

https://www.telerik.com/kendo-react-ui/components/charts/api/GridLines/

Similar to how other elements provide the option to render a custom visual.