We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
the setTime API in TimePicker does not work for ios as there is a missing ref in TimePickerField.ios.js.
setTime(date){ this.refs.datePickerComponent.setDate(date); } return(<DatePickerComponent {...this.props} mode="time" => ref='datePickerComponent' labelStyle={[formStyles.fieldText, this.props.labelStyle]} valueStyle = {[formStyles.fieldValue,this.props.valueStyle]} valueContainerStyle = {[formStyles.alignRight, formStyles.horizontalContainer, this.props.valueContainerStyle]} containerStyle={[ formStyles.fieldContainer, formStyles.horizontalContainer, this.props.containerStyle, ]} />)
The text was updated successfully, but these errors were encountered:
Android, too. My code: this.refs.registrationForm.refs.timeMeeting.setTime(new Date()); My error:
this.refs.registrationForm.refs.timeMeeting.setTime(new Date());
Sorry, something went wrong.
Just raised PR #134 with the fix for those who need it
No branches or pull requests
the setTime API in TimePicker does not work for ios as there is a missing ref in TimePickerField.ios.js.
The text was updated successfully, but these errors were encountered: