Telerik Forums
KendoReact Forum
1 answer
152 views

Hi Team,

Can some one provide me a solution example for kendo react scheduler custom editor with recurrence rule.

Wissam
Telerik team
 answered on 06 Jul 2023
1 answer
81 views

Hello world,

I am trying to add a filter row inside the MultiColumnComboBox options. 

I have a table that looks like

Name______Age________City

RICK________47___________USA

Tom________47___________CA

 

I want  it to look like

Name______Age________City

filterbox___filterbox___filterbox

RICK________47___________USA

Tom________47___________CA

 

These filter boxes will be filtering by name, age, and city respectively. And I cannot really find a way where I can use this.

 

Any help is greatly appreciated!

 

 

 

Konstantin Dikov
Telerik team
 answered on 06 Jul 2023
1 answer
211 views
Dear Support Team,

I am currently utilizing your Kendo React PDF processing tool for my project. While the user interface displays Spanish characters correctly and clearly, the generated PDF reports do not mirror this accuracy. Instead, they seem to render different characters.

Your assistance in resolving this matter would be greatly appreciated.

I really appreciate any help you can provide.

UI

 

PDF

Konstantin Dikov
Telerik team
 answered on 05 Jul 2023
1 answer
305 views

i need to display checkbox for each row. But only restrict to 1 selection at a time which is achieved through selection mode - single.

 

However there is checkbox displayed at header level as well which i dont want to display to user..how to achieve this ?

Konstantin Dikov
Telerik team
 updated answer on 04 Jul 2023
1 answer
272 views

I have a requirement to include a checkbox list field on a form--one field with N number of checkboxes. The value of the "field" would be a comma-delimited list of the checked values. The field can optionally be required, too, meaning at least one of the N checkboxes must be checked before the field is considered valid.  For example:

There isn't a CheckboxGroup equivalent to the RadioGroup (though people have asked about it). And the RadioGroup component doesn't seem to have a "checkbox mode."

Is there a decent way to build a checkbox list field using KendoReact? If so, how? I've toyed with the following options:

  • Using an array map function within the form to render a series of <Field ... component={Checkbox} /> instances.
    • This works, but validation is a challenge since each Field has its own validation message rather than the collective field having a singular validation message.
  • Building a custom field, <Field ... component={MyCheckboxList} />, where MyCheckboxList includes several Checkbox components. This is based on the Custom Components documentation. This seems incorrect since <Field /> is meant to hold one and only one form input field not several.

    I'd prefer not to hand-roll a checkbox list field without using KendoReact. I can't be the first KendoReact user to need a checkbox list on a form...right? 😀

    Konstantin Dikov
    Telerik team
     answered on 03 Jul 2023
    1 answer
    308 views
    Hello,

    I'm currently developing a feature in my project using the Kendo React TreeView component to display a large amount of nested data.

    However, I'm encountering performance issues due to the high volume of data I need to display. I'm curious to know whether Kendo React TreeView supports virtualization, or if there's an existing component that does?

    If this feature isn't available, could you provide any guidance or suggestions on how I might manually implement this?

    Best regards.
    Konstantin Dikov
    Telerik team
     answered on 03 Jul 2023
    1 answer
    101 views

    Hello,

    I have a React project, which uses "react-styleguidist": "13.0.0" to show various examples of the components, while kendo react grid 4.8.0 has been used. Using this version, the column resizer works as expected in the documentation page which contains several examples of Grid component.

    I am trying to upgrade Kendo React Grid and all its related packages to version 5.1.0. This is the latest version possible to use, without upgrading also the project to React 18.

    All functionalities seem to work as expected with version 5.1.0, except of column-resizer. It only works correctly in the 1st Grid example of the documentation page. In all other examples except of the 1st one, when I try to drag the column-resizer the column resizes correctly, but it also scrolls to the 1st grid example of the documentation page.

    Do you have any suggestions on what could be the root of the problem?

    Thank you.

    Vessy
    Telerik team
     answered on 30 Jun 2023
    2 answers
    91 views

    Hi.

    Is there any way to use JsonSchema when creating a Form with the KendoReact Form component? Maybe something along the lines of react-jsonschema-form? If not, are there any plans to integrate this in the future or any ideas how this could be implemented using the existing KendoReact components?

    In the end, we would like to be able to build our forms dynamically based on jsonSchema information. That is the main goal of this question.

    Thanks,

    Greetings,

    Bernd

     

    Bernd
    Top achievements
    Rank 5
    Bronze
    Bronze
    Bronze
     answered on 29 Jun 2023
    0 answers
    81 views

    as follow img: how should i fix it

    Steve
    Top achievements
    Rank 1
    Iron
    Iron
     asked on 29 Jun 2023
    0 answers
    85 views

    Here is my code, and it crashed. 

    import {
      AgendaView,
      DayView,
      MonthView,
      Scheduler,
      TimelineView,
      WeekView,
    } from '@progress/kendo-react-scheduler';
    import * as React from 'react';
    import { useState } from 'react';
    import { useQuery } from 'react-query';
    import { useAppContext } from '../../AppContext';
    import { getCalendarEvents } from './getCalendarEvents';
    
    const workDayStart = '09:00';
    const workDayEnd = '18:00';
    export function Calendar() {
      const { accessToken } = useAppContext();
      const [isMonthView, setIsMonthView] = useState(false);
      const [selectedDate, setSelectedDate] = useState(new Date());
    
      const { data: events } = useQuery({
        queryKey: ['getCalendarEvents', { selectedDate, isMonthView, accessToken }],
        queryFn: getCalendarEvents,
        initialData: [],
        refetchOnWindowFocus: false,
      });
    
      const onDateChange = (e) => {
        setSelectedDate(e.value);
        console.log(e.value);
      };
      const onViewChange = (e) => {
        if (e.value === 'month') {
          setIsMonthView(true);
        } else {
          setIsMonthView(false);
        }
      };
    
      return (
        <Scheduler data={events} onDateChange={onDateChange} onViewChange={onViewChange}>
          <WeekView title='Week' workDayStart={workDayStart} workDayEnd={workDayEnd} />
          <AgendaView />
          <DayView workDayStart={workDayStart} workDayEnd={workDayEnd} />
          <TimelineView workDayStart={workDayStart} workDayEnd={workDayEnd} />
          <MonthView />
        </Scheduler>
      );
    }
    

    Yiheng
    Top achievements
    Rank 2
    Iron
    Iron
    Iron
     asked on 27 Jun 2023
    Narrow your results
    Selected tags
    Tags
    +? more
    Top users last month
    Anislav
    Top achievements
    Rank 6
    Silver
    Bronze
    Bronze
    Jianxian
    Top achievements
    Rank 1
    Iron
    Marco
    Top achievements
    Rank 3
    Iron
    Iron
    Iron
    Jim
    Top achievements
    Rank 2
    Iron
    Iron
    Nurik
    Top achievements
    Rank 2
    Iron
    Iron
    Want to show your ninja superpower to fellow developers?
    Top users last month
    Anislav
    Top achievements
    Rank 6
    Silver
    Bronze
    Bronze
    Jianxian
    Top achievements
    Rank 1
    Iron
    Marco
    Top achievements
    Rank 3
    Iron
    Iron
    Iron
    Jim
    Top achievements
    Rank 2
    Iron
    Iron
    Nurik
    Top achievements
    Rank 2
    Iron
    Iron
    Want to show your ninja superpower to fellow developers?
    Want to show your ninja superpower to fellow developers?