This repository was archived by the owner on Oct 27, 2022. It is now read-only.
This repository was archived by the owner on Oct 27, 2022. It is now read-only.
Question: control the size of DatePicker #30
Closed
Description
I have a form where DatePicker
is integrated,
<form id="timeline" className="form" onChange={onChange} onSubmit={validateTimelineForm(form, onSubmit, onErrors)}>
<div className="row">
<DatePicker className="col-xs-6" onRenderCaret={noop}>
{inputProps =>
<div className={cx('form-group', { 'has-danger': form.errors.applicationStart })}>
<label htmlFor="applicationStart">
Start of Application:
</label>
<input
{ ...inputProps }
type="text"
className={cx(inputProps.className, 'form-control')}
/>
</div>
}
</DatePicker>
// ...
DatePicker
popup appears after click, but it's ridiculously big,
Is there a way to control it's dimensions?
Metadata
Metadata
Assignees
Labels
No labels