반응형
<Select
className="select2-selection col-3 col-12 mb-1 mt-1"
name="level"
options={levelJson}
defaultValue={moveData?.selectedLv}
getOptionLabel={getOptionLabel}
getOptionValue={getOptionValue}
onChange={(e)=> userEditHandler(e, "level")}
styles={{
control: (styles) => ({
...styles,
backgroundColor: "#eff2f7",
opacity: 1,
color: "#495057",
cursor: 'not-allowed',
pointerEvents:"all"
})
}}
isDisabled={true}
/>
참조.
https://mingmeng030.tistory.com/267
https://react-select.com/styles
728x90
'취업 > React.JS' 카테고리의 다른 글
[React] 유니레벨 차트 org chart 기능 구현 결과물. (0) | 2023.06.14 |
---|---|
[react] formik 라이브러리 동적 할당하기. (0) | 2023.06.02 |
[React.js] tailwind.css 설치하기 (0) | 2023.04.26 |
[React] user ip 추출하기. (0) | 2023.03.31 |
[React] IFrame에 폼태그 전송하기. (0) | 2023.02.28 |