Wrong value returned from picker
See original GitHub issueBug
Time picker returns today’s date instead of given date.
In datetimepicker.android.js
53rd line should be const date = new Date(value);
instead of const date = new Date();
Issue Analytics
- State:
- Created 4 years ago
- Reactions:4
- Comments:10
Top Results From Across the Web
Wrong value returned from picker · Issue #94 - GitHub
Time picker returns today's date instead of given date. In datetimepicker.android.js 53rd line should be const date = new Date(value); instead ...
Read more >MaterialDatePicker returning wrong value - Stack Overflow
The problem is that the result obtained is slightly wrong, example: If the user selects the date 10/05/1998 (1st of October 1998), the...
Read more >BDC field returns wrong value in the Value Picker - TechNet - Microsoft
I have a BDC entity in an application with multiple functioning entities but one of the entities is not behaving. it returns a...
Read more >List Picker returns wrong return value - SAP Community
Hi, I have created a simple an online app with a Create Order page using the "Form Cell Page" template with a List...
Read more >Date picker returns value in wrong field — oracle-tech
Hello everybody, I am using a date picker in select statement to display it in a report. The syntax I am using is...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
If you don’t want to edit package files, there’s a fix (you need to use
moment
package):`onChange = (event, date) => { const { type } = event;
};`
This issue has not been fixed still. Using the latest v 2.3.0, On setting time, the date still changes to the current date.