-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Broken DatePicker #1722
Comments
So taking a closer look at it, the DateDisplay component in the Calendar had a height set to 100% which was pushing the remainder of the calendar to the bottom. I'm not sure why it's happening but I'll update if I find the source of the problem. |
Line 98 in calendar.jsx. 100% should be replaced by 64. So the dateDisplay style object should be, dateDisplay: {
width: isLandscape ? 120 : '',
height: isLandscape ?
weekCount === 5 ? 238 :
weekCount === 6 ? 278 :
198 : 64,
float: isLandscape ? 'left' : 'none',
} |
I'm seeing the same effect in the timepicker |
PRs welcome :-) |
Cool, I'll try to get one in during the weekend. |
Fixed in PR #1726. This PR also fixes the TimePicker issue that CuthbertJungle was having. |
This reverts commit 40ba4d0.
This reverts commit 40ba4d0.
This reverts commit 40ba4d0.
@shaurya947 This can be merged also I think |
This reverts commit 40ba4d0.
This reverts commit 40ba4d0.
@yulric You are not the only one to have this issue. |
Hi there,
I'm currently having an issue with the DatePicker. I have a simple layout with a DatePicker nested within a div and when I click on the the TextField, although the DatePicker show up it is missing the Calendar and is not set up right. Here's a screenshot of the issue.
The version I am running are:
material-ui: 0.11.1
react: 0.14.0-rc1
react-tap-event-plugin: 0.2.0
This is on chrome by the way. Thanks.
The text was updated successfully, but these errors were encountered: