I need help in react-data-grid for acess calander.. Please help . When I click on date my calendar not come out.. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I need help in react-data-grid for acess calander.. Please help . When I click on date my calendar not come out..

import logo from "./logo.svg"; import "./App.css"; import "react-data-grid/lib/styles.css"; import DataGrid, { textEditor } from "react-data-grid"; const validateEmail = value => { if (!value) return "Email is required"; if (!/^[a-zA-Z0-9]+@[a-zA-Z0-9]+\.[A-Za-z]+$/.test(value)) return "Invalid email address"; }; //The error has been fixed. const columns = [ { key: "id", name: "ID",editor:textEditor }, { key: "date", name: "Date",editor: MohiveDatePicker }, { key: "email", name: "email",editor:textEditor, validate:validateEmail}, ]; const rows = [{ id: 0, date: "2023-01-02", email: "[email protected]" }]; function App() { return <DataGrid columns={columns} rows={rows} />; } export default App;

5th Feb 2023, 12:09 PM
Silly
9 Answers
+ 1
Please use codesandbox or similar site to share your react code. So we can run it in same environment as you do. Also where did you define MohiveDatePicker? I can't see this data anywhere. It should be imported also or? I tried to test code and I needed to delete first 2 imports(svg and css file you didnt included it) and then I get MohiveDatePicker is not defined.
5th Feb 2023, 11:20 PM
PanicS
PanicS - avatar
+ 1
You have forgotten to write MohiveDatePicker function
6th Feb 2023, 7:35 AM
Calviղ
Calviղ - avatar
0
Than please help Calviղ PanicS
6th Feb 2023, 10:14 AM
Silly
6th Feb 2023, 10:21 AM
Silly
0
Silly we don't know how to help if you are not sharing your code.
6th Feb 2023, 1:38 PM
Calviղ
Calviղ - avatar
0
Bro how send you code ? Send me your telegarm or whatspp no
6th Feb 2023, 1:41 PM
Silly
0
https://codesandbox.io You can use this site or some other similar. Just copy/paste code, and make sure you added dependencies. Then share us your code.
7th Feb 2023, 7:48 AM
PanicS
PanicS - avatar
0
Ok bro
7th Feb 2023, 7:51 AM
Silly