0
나는 드롭 다운과 모달을 가지고 있으며 드롭 다운 항목 중 하나를 클릭했을 때 모달을 보여주고 싶습니다. 가능한가? 모달의 트리거 소품에 필요한 대상 DropdownItem을 얻을 수 없기 때문에 이렇게 할 수있는 방법을 찾지 못했습니다.Semantic UI React에서 드롭 다운 항목을 클릭 할 때 모달을 트리거하는 방법은 무엇입니까?
export class Demo extends React.Component<{}, {}> {
private options = [
{ text: 'doNothing', value: 'doNothing' },
{ text: 'openModal', value: 'openModal' },
]
render() {
return (
<div>
<Dropdown
fluid
selection
options={this.options}
defaultValue={this.options[0].value} />
<Modal trigger={<Button>trigger</Button>}>
<Modal.Header>Select a Photo</Modal.Header>
<Modal.Content image>
<Modal.Description>
<p>Some contents.</p>
</Modal.Description>
</Modal.Content>
</Modal>
</div>
)
}
}
좋은 아이디어, 고마워! – Searene