redux-forms / FOCUS / BLUR / CHANGE不起作用

时间:2019-01-16 08:48:07

标签: javascript redux-form

在我的代码中,当单击以打开下拉菜单时显示=> redux-form / FOCUS,然后在其他任何位置(选择国家或下拉菜单之外)单击其他按钮后才显示redux-form / BLUR。它应该在第一和第二毫秒后显示FOCUS模糊。并且当再次单击时应该更改。现在不会更改(可能),因为BLUR并不是在FOCUS之后出现的。。。之后,当我单击选择项目redux-form / CHANGE时,非常感谢您的帮助

export const renderSelectField = ({ input, maxHeight, fullWidth, label, style, meta: { touched, error }, children }) => (
  <SelectField floatingLabelText={label}
    fullWidth={fullWidth}
    style={!style ? { width: '100%', margin: 0 } : style}
    errorText={touched && error}
    {...input}
    children={children}
    maxHeight={maxHeight}
    onChange={(event, index, value) => input.onChange(value)}
  />
)

0 个答案:

没有答案