Practical React - 10 - Date Picker

  Рет қаралды 150,770

Codevolution

Codevolution

Күн бұрын

Пікірлер: 88
@fuwanep
@fuwanep Жыл бұрын
Though it is important to learn controlled components, tutorials like these really help a lot and pretty much improves code quality in my opinion. There's no need to reinvent the wheel.
@bluelion978
@bluelion978 3 жыл бұрын
Best teacher!!! I am a beginner and Once I hear your voice, I always know I am going to learn something new.
@nilmendes7710
@nilmendes7710 4 жыл бұрын
When I was looking at the documentation at 4:47, Professor Vishwas showed, excellent tutorial, didactic. At 7:27 great tip.
@nathansantos4197
@nathansantos4197 4 жыл бұрын
This tutorial has more information than the documentation itself. The official documentation is really poor. You helped me a lot. Thanks!
@mdabdullahalmohaymenrafi7984
@mdabdullahalmohaymenrafi7984 3 жыл бұрын
Nice tutorial for beginners like me who will already have a basic info while reading the documentation.
@babuchinnasamy3890
@babuchinnasamy3890 Жыл бұрын
Thanks, it is a very good video. this is better than another date picker. i will implement my project now
@fmaciel2
@fmaciel2 4 жыл бұрын
Thanks a lot! You saved me hours of researching.
@fernandodiegosantillanvara1108
@fernandodiegosantillanvara1108 Жыл бұрын
Thanks bro, Your help to much. Its a master class!!!
@alokranjan476
@alokranjan476 4 жыл бұрын
Wow, you are lifesaver. Thanks a lot again.
@ComedyReact-g00g1e
@ComedyReact-g00g1e 4 жыл бұрын
Good job ... Audio was clear and legible to understand
@migracionexitosa
@migracionexitosa 2 жыл бұрын
I love this explanation thank you very much!!
@mr.hassaan7785
@mr.hassaan7785 4 жыл бұрын
Very deep explanation. Appreciated
@evanbero9705
@evanbero9705 4 жыл бұрын
Thank you so much for this video!!! So much simpler than the documentation!!!
@kulsoomrahman7547
@kulsoomrahman7547 3 жыл бұрын
your videos are life saving :D
@gabrielturrillas
@gabrielturrillas 4 жыл бұрын
thank you so much i love your videos. greetings from chile
@ranaimranahmed2532
@ranaimranahmed2532 3 жыл бұрын
bht achi videos hn apki thnx alot sir urdu hindi ma b bna dia karain plz
@mdarefbillah4784
@mdarefbillah4784 3 жыл бұрын
Excellent video!
@dmitrykabanov2869
@dmitrykabanov2869 2 жыл бұрын
if you want to change a language of a caledar: import DatePicker, {registerLocale} from "react-datepicker"; registerLocale("ru", ru); // Russian example
@amankori9697
@amankori9697 4 жыл бұрын
Great tutorial, really helpfull.
@aleksandrmatyka3118
@aleksandrmatyka3118 4 жыл бұрын
good, but what if the user entered some letter into the input and then wants to use the datapicker, it will give undefined values, it would be nice to do something in this case
@iLOVE800
@iLOVE800 4 жыл бұрын
Thank you so much! So easy to understand and very clear. Keep going!
@shivomsrivastava6540
@shivomsrivastava6540 2 жыл бұрын
Helpful video. Thanks
@vognercee
@vognercee 2 жыл бұрын
@Codeevaluation thank you for the tutorial. I am experiencing a challenge with submission. A DatePicker is typically used in conjunction with another component. In my RetrieveDocs component, I am using the date picker to set a retrieveDate -- via . However, the after cruising through the SearchContainer code it exits directly to the the RetrieveDocs component. How do I pause the DatePicker until a date has been chosen?
@karthikpuvvula
@karthikpuvvula 2 жыл бұрын
Thank you 🙏
@varshithgowdav9892
@varshithgowdav9892 Жыл бұрын
is there a prop on date picker for each day so that i can pass this data to css file to set content property.
@praj777
@praj777 3 жыл бұрын
Thank you for the video.I would like to know about how to add placeholder inside datepicker?
@Amarjeetkumar-it8rj
@Amarjeetkumar-it8rj 4 жыл бұрын
Sir please add date range picker also Thanks for this playlist
@devbravo4158
@devbravo4158 3 жыл бұрын
Amazing! Thank you!
@jacksonpatrick3454
@jacksonpatrick3454 2 жыл бұрын
How to select only date, in this am getting time value too
@moupalidutta1589
@moupalidutta1589 3 жыл бұрын
Not able to change the date format. Its taking my system date formay though changing it explicitly in the code.
@alexanterkentros4770
@alexanterkentros4770 4 жыл бұрын
Does this supports localization :)?
@avishekchatterjee531
@avishekchatterjee531 3 жыл бұрын
If I changed the date also it only showing me the current date not that I am selected? ANY help
@albinsjolin649
@albinsjolin649 3 жыл бұрын
Thanks man!
@deepankarthi2886
@deepankarthi2886 2 жыл бұрын
If the datepicker popup is hidden while in left becz of overlapping how to fix it
@Sam-kr5ix
@Sam-kr5ix 3 жыл бұрын
That's what i call a librairy
@arlandmv4053
@arlandmv4053 3 жыл бұрын
thank you!
@rauldeandrade
@rauldeandrade 4 жыл бұрын
I've implemented the date picker with formik, but it crashes the app when I try to reload data into it to edit or update the data in the form. Is there any workaround for this problem? I've spent hours on it and still don't have any solutions.
@Codevolution
@Codevolution 4 жыл бұрын
I mention about that in the formik video. IT is probably due to the fact that you're trying to load a string value instead of converting it into a DATE type first.
@rauldeandrade
@rauldeandrade 4 жыл бұрын
@@Codevolution Thank you so much for you kind reply. I did in-fact face this issue and I tried to fix it just now and it worked well. I guess I got confused last time when trying to convert the date from string to number that the datepicker could recognize, that I kept making mistakes. I tried the Date.parser() and couldn't make it work, but now after following your comment it worked without issues. I have only been programming js for a couple of months and your videos have been invaluable. I am forever grateful for your teachings and sharing of your knowledge in a simple and easy to understand manner. I am also loving the new React Render series. Thank you so much dear friend and I hope you and your family will always find happiness and prosperity.
@divvagg5616
@divvagg5616 4 жыл бұрын
@@Codevolution sir can we use moment.js library instead of DatePicker to do the same ? Plz reply
@sivajyothi7287
@sivajyothi7287 2 жыл бұрын
I am getting error, Type date is not assignable to null, I am using typescript, what can I do?
@Bizniiz
@Bizniiz 4 жыл бұрын
is there anyway i can set for example 3-4 times to be avaiable to book that day and push to api and then if the time is choosed make it non clickable for that day. great tutoriol btw!
@sirlionellord
@sirlionellord 3 жыл бұрын
did you find an solution?
@Manideep_0240
@Manideep_0240 4 жыл бұрын
Is this datepicker working on all web applications such as IE and other stuff
@twerkyfingers
@twerkyfingers 3 жыл бұрын
But what about the styling
@duaaasamad
@duaaasamad 3 жыл бұрын
clear button doesn't change date value. any solution?
@JohnDoe-rj2kf
@JohnDoe-rj2kf 3 жыл бұрын
how do I make two date pickers with start and end date of for example hotel book in? so that it wont be one day
@Kumarmateti9
@Kumarmateti9 4 жыл бұрын
Does this date picker support in Safari Browser?
@Potato-h2w2s
@Potato-h2w2s 3 жыл бұрын
can u customize it? How we can style?
@tahriguion2755
@tahriguion2755 3 жыл бұрын
Someday in the future. Someone had to explain me with the indian tutorial are the bests... cause that the only one that works
@srinathpandi
@srinathpandi 3 жыл бұрын
Hi, is there any was we can assign default value? Please help
@alirezamohammadi1771
@alirezamohammadi1771 3 жыл бұрын
tnk u so much
@warriorking778
@warriorking778 3 жыл бұрын
how to render Date Picker { selectedDate } in this formate dd/MM/yy.
@akki7949
@akki7949 3 жыл бұрын
How to add calender icon to do the same??
@srikanthracharla420
@srikanthracharla420 4 жыл бұрын
If i want to add time in AM and PM mode, How to do this for this component, Can anyone help me pls
@xardass4209
@xardass4209 3 жыл бұрын
dateFormat="MMMM d, yyyy h:mm aa" past this in datepicker instance, if you dont want in time colum but only in the input paste this also timeFormat="HH:mm".
@wolfboy417
@wolfboy417 3 жыл бұрын
thanks man
@prajulsahu9838
@prajulsahu9838 2 жыл бұрын
Hey, nice video, I used this DatePicker, but I have a issue, as it's transparent. I can see and even click the button which are placed just below it. How to do this? I tried z-index and opacity, they are not working.
@diegovillafane6313
@diegovillafane6313 Жыл бұрын
In their documentation you have an import css line that you have to import wherever you use the datePicker otherwise that happens!
@yinonelbaz5309
@yinonelbaz5309 3 жыл бұрын
very usefull thanks from israel
@robertberenbaum
@robertberenbaum 4 жыл бұрын
I am using components, not functions. I am getting an error. Error: Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons: 1. You might have mismatching versions of React and the renderer (such as React DOM) 2. You might be breaking the Rules of Hooks 3. You might have more than one copy of React in the same app
@saziedhassan3976
@saziedhassan3976 4 жыл бұрын
As the error already said, hooks can only be used in functional components. I am assuming you tried using them in class components? If so, you can declare your state as an object in your constructor and set the state after binding your onChange handler. Hope this helps!
@guptasagar694
@guptasagar694 Жыл бұрын
Bhai Hooks kon use karta he class components mein
@elakiyabaskaran6485
@elakiyabaskaran6485 3 жыл бұрын
How to use this for time format
@gamingwithnoboundaries5375
@gamingwithnoboundaries5375 4 жыл бұрын
can you help me on how to fill the date picker? like i have a date i need to fill it but its different format
@entertainmenthub9115
@entertainmenthub9115 4 жыл бұрын
Hey man you are awesomeee! your videos help me alottt.. I have a resquest please add timepicker on this series.. It's a big favour thanks :)
@nikhilkshirsagar186
@nikhilkshirsagar186 4 жыл бұрын
Thanks
@amolmehlawat8197
@amolmehlawat8197 4 жыл бұрын
How can I add time also?
@Amanda-qu9uw
@Amanda-qu9uw 3 жыл бұрын
Positioning of the calendar is Waaaaayyyy to the far left for me. Plus, there is no information on how to fix this.
@sologuitardeshchatterjee
@sologuitardeshchatterjee 4 жыл бұрын
Nice tutorial but would be great if could enhance it with moment and show some operations with it.
@HaiderAli-oi5fm
@HaiderAli-oi5fm 3 жыл бұрын
So If I want to select two dates lets say "from date" and "to date" then should I use two DatePicker components? If Anyone knows, do reply me.
@sirlionellord
@sirlionellord 3 жыл бұрын
no you need the datepicker range
@HaiderAli-oi5fm
@HaiderAli-oi5fm 3 жыл бұрын
@@sirlionellord Oh Thank you. I've been waiting for reply.
@sirlionellord
@sirlionellord 3 жыл бұрын
@@HaiderAli-oi5fm try that ;)
@princekumarsingh2440
@princekumarsingh2440 3 жыл бұрын
How to add placeholder init
@RajveerSingh-yb6zq
@RajveerSingh-yb6zq 4 жыл бұрын
what to do for datetime bro
@brijeshraval977
@brijeshraval977 4 жыл бұрын
Idk what's wrong with accent but nice and clean video though thanks
@jsceo
@jsceo 4 жыл бұрын
what's that color scheme?
@apexyu164
@apexyu164 4 жыл бұрын
any tutorial of Start and End time in datepicker please ..thanks
@RahulSharma-ke7wg
@RahulSharma-ke7wg 3 жыл бұрын
can anyone pls tell me ,how to disable 3 future days from current date using the filter prop.
@vikassingh1946
@vikassingh1946 2 жыл бұрын
how to filter the year
@sologuitardeshchatterjee
@sologuitardeshchatterjee 4 жыл бұрын
Also could you please upload a video on react table along with collapsible items embedded. Thanks
@calvincrane
@calvincrane 3 жыл бұрын
Nice one! {hows} it look on mobile? I assume it also has matured nicely. Dates and times mash my little brain so any libs from big brained people I welcome :)
@SumitRaj-jf3ro
@SumitRaj-jf3ro Жыл бұрын
good
@pavankumarvangala2548
@pavankumarvangala2548 4 жыл бұрын
HI, How can I use two colour pickers in a single page
@blockcoder8129
@blockcoder8129 4 жыл бұрын
Please upload a video, on sidebar menu, that can be toggled.
@shivshankarkeshri8959
@shivshankarkeshri8959 2 жыл бұрын
Make some project work
Practical React - 11 - Presentation (MDX) Deck
10:37
Codevolution
Рет қаралды 17 М.
Гениальное изобретение из обычного стаканчика!
00:31
Лютая физика | Олимпиадная физика
Рет қаралды 4,8 МЛН
Une nouvelle voiture pour Noël 🥹
00:28
Nicocapone
Рет қаралды 9 МЛН
UFC 310 : Рахмонов VS Мачадо Гэрри
05:00
Setanta Sports UFC
Рет қаралды 1,2 МЛН
Каха и дочка
00:28
К-Media
Рет қаралды 3,4 МЛН
React Formik Tutorial - 38 - Date Picker
12:02
Codevolution
Рет қаралды 47 М.
Learn About React DatePicker in 5 Minutes
5:51
Syncfusion, Inc
Рет қаралды 37 М.
Practical React - 14 - Charts
16:41
Codevolution
Рет қаралды 70 М.
Building an Interactive Calendar with Tailwind UI, React and date-fns
23:48
Air Datepicker 3. Лучший календарь на JavaScript
12:41
Андрей Кудлай
Рет қаралды 9 М.
How to Create a Date and Time Picker Form | Next.js & Shadcn
23:07
Turning bad React code into senior React code
13:10
Cosden Solutions
Рет қаралды 95 М.
Animations In React - Framer-Motion Tutorial
23:31
PedroTech
Рет қаралды 203 М.
How to Use Material UI Date Picker in React Js
10:24
Mitter - Your Tech Mate
Рет қаралды 2,7 М.
Гениальное изобретение из обычного стаканчика!
00:31
Лютая физика | Олимпиадная физика
Рет қаралды 4,8 МЛН