Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <Select
  2.  
  3. showSearch
  4. style={{ width: '100%' }}
  5. placeholder="Selection la choix de votre numéro de téléphone "
  6. optionFilterProp="children"
  7. onChange={handleChangeSelect}
  8.  
  9. defaultValue={extraitMP3[ids].Mp3[idJson].visibilite}
  10. onFocus={handleFocusSelect}
  11. onBlur={handleBlurSelect}
  12. filterOption={(input, Option) => Option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0}
  13. >
  14. <Option value="1"> Visible dans la recherche et sur ma fiche </Option>
  15. <Option value="2"> Visible sur ma fiche uniquement </Option>
  16. <Option value="3"> Masqué </Option>
  17.  
  18. </Select>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement