Telerik Forums
KendoReact Forum
1 answer
169 views

when searching for parent node, the children nodes related to that are not shown, therefore, when there is a lot of drop-down data and there are the same child nodes under different parent nodes, it is difficult to find the desired child node.

M2hxqy (forked) - StackBlitz

Hu
Top achievements
Rank 1
Iron
Iron
Iron
 answered on 12 Jul 2023
1 answer
64 views

the time indicator has crossed the event block, but the event actually happens after that. 

Wissam
Telerik team
 answered on 12 Jul 2023
1 answer
142 views
It is possible to design a Kendo form with drag-and-drop functionality by using the Kendo UI Draggable and DropTarget components. These components allow you to create draggable elements and drop zones, which can be used to create a variety of drag-and-drop form layouts.
Konstantin Dikov
Telerik team
 answered on 12 Jul 2023
1 answer
430 views
Hello everyone, I need help. I have implemented a Modal and I would like to use it like as an <aside> where the content will be a form (multiple fields: combobox, multiselect). The Drawer component is not suitable for this case, and neither is the Dialog, as the Dialog is always centered in the middle of the screen. That's why I have made my own implementation using Kendo's CSS classes.
Here's an example.
9gejxw (forked) - StackBlitz

you may notice that the Combobox's popup doesn't work. Its z-index remains 100, while the Modal's z-index is 1002.

I tried overriding the z-index of the k-animation-container class, but I wasn't successful. What can I do to proceed with this idea?

Gabriel.

Vessy
Telerik team
 answered on 11 Jul 2023
1 answer
97 views

can you please provide an example of kendo react selection grid along with pagination, filtering enabled ?

 

Wissam
Telerik team
 answered on 10 Jul 2023
1 answer
386 views

How can I implement a MaskedTextBox that displays the country flag automatically when a country code like +1 or +2 is entered for a phone number?

 

import * as React from "react";
import * as ReactDOM from "react-dom";
import {
  MaskedTextBox,
  InputPrefix,
  InputSuffix,
} from "@progress/kendo-react-inputs";
import { Button } from "@progress/kendo-react-buttons";
import { Icon } from "@progress/kendo-react-common";
const prefix = () => (
  <InputPrefix>
    <Icon name="user" />
  </InputPrefix>
);
const suffix = () => (
  <InputSuffix>
    <Button themeColor="primary" fillMode={"flat"} rounded={null}>
      Send
    </Button>
  </InputSuffix>
);
const App = () => {
  return (
    <div>
      <div>Number:</div>
      <MaskedTextBox
        prefix={prefix}
        suffix={suffix}
        mask="(999) 000-00-00-00"
        defaultValue="(359) 884-12-33-21"
        width={300}
      />
    </div>
  );
};  
Wissam
Telerik team
 answered on 10 Jul 2023
1 answer
474 views

Hi,

Please see this example https://codesandbox.io/s/thirsty-bohr-2s8dmm?file=/app/main.jsx. There is a very simple DatePicker and a very simple Grid in the page. The Grid has 1000 rows. When clicking the DatePicker button, it take 1 - 2 seconds to show the calendar dropdown, which  significantly slower then normal.

 

Thanks,

Jie

Filip
Telerik team
 answered on 10 Jul 2023
0 answers
160 views

I'm working on a component library, and I'd like to wrap the Kendo Cards component with additional stuff that matches our requirements; however, I get an error about hooks being an issue due to the nesting.  Is there a way around this?


import { ReactNode } from 'react';
import { Card as KendoCard } from '@progress/kendo-react-layout';

export interface CardProps {
  /**
   * any nested JSX elements
   */
  children?: ReactNode;
}

/**
 * Primary UI component for wrapping content in a card
 */
const Card = ({ children }: CardProps) => (
  <KendoCard
    style={{
      width: 260,
      boxShadow: '0 0 4px 0 rgba(0, 0, 0, .1)',
      marginTop: '15px',
      padding: '19px',
    }}
  >
    {/* <KendoCardBody> */}
      <h4>This is a change</h4>
      {children}
    {/* </KendoCardBody> */}
  </KendoCard>
);

export default Card;
Jason
Top achievements
Rank 1
 asked on 07 Jul 2023
1 answer
174 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
92 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
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?