Is Kendo React support dependencies installed with yarn? or we need to install all the dependencies with npm only?

0 Answers 24 Views
General Discussions Grid
Prafulla
Top achievements
Rank 1
Prafulla asked on 01 Feb 2024, 01:57 PM
I wanted to add data grid in my existing project. where all the dependencies are installed with yarn
so I installed the kendo-react-grid dependency with yarn and i am getting the error.

here is the code. 

import * as React from "react"; import * as ReactDOM from "react-dom"; import { Grid, GridColumn } from "@progress/kendo-react-grid"; import products from "./products.json";

export const KindoRactApp = () => {
  return (
    <Grid style={{ height: "400px" }} data={products}>
      <GridColumn field="ProductID" title="ID" width="40px" />
      <GridColumn field="ProductName" title="Name" width="250px" />
      <GridColumn field="Category.CategoryName" title="CategoryName" />
      <GridColumn field="UnitPrice" title="Price" />
      <GridColumn field="UnitsInStock" title="In stock" />
    </Grid>
  );
};


this is the error 

  
Wissam
Telerik team
commented on 05 Feb 2024, 11:41 AM

Hi, Prafulla,

I could see that my colleague Vessy is already handling the same question on a duplicate forum question. Therefore, I would suggest continuing the discussion there in order to keep the information consistent, and we will be glad to assist you further:

Regards,
Wissam
Progress Telerik

No answers yet. Maybe you can help?

Tags
General Discussions Grid
Asked by
Prafulla
Top achievements
Rank 1
Share this question
or