Relative Content

Tag Archive for reactjsmaterial-uimui-x-date-picker

The direction of the input text DatePicker mui

The problem is that I can’t change the direction of the text inside the DatePicker Mui component.
An illustrative example is the set of the year should start from left to right, and it starts from right to left

The direction of the input text DatePicker mui

The problem is that I can’t change the direction of the text inside the DatePicker Mui component.
An illustrative example is the set of the year should start from left to right, and it starts from right to left

Date showing in letter format in stead of number for mui date picker

<LocalizationProvider dateAdapter={AdapterMoment}> <Box className=”datePickerCustom”> <DatePicker // label=”Seleccione Fecha de nacimiento” sx={{ ‘& .MuiOutlinedInput-root’: { ‘& fieldset’: { border: ‘none’, }, ‘& input’: { height: ’50px’, padding: ‘0 14px’, }, }, ‘& .MuiInputBase-input’: { height: ’50px’, padding: ‘0 14px’, }, }} value={field.value || null} onChange={handleChange} renderInput={() => <input {…props} />} inputFormat=”DD-MM-YYYY” className=”form-control font-hyundaiHead” /> </Box> </LocalizationProvider> […]