nhn / tui.date-picker

Component that selects specific date.
https://nhn.github.io/tui.date-picker/latest/
MIT License
94 stars 30 forks source link

DateRangePicker 에서는 open, close 이벤트를 어떻게 구현해야 하나요? #71

Closed dimorin closed 3 years ago

dimorin commented 3 years ago

api를 보니, DataPicker 클래스에는 open, close 이벤트가 있는데, DateRangePicker 클래스에서는 open, close 이벤트가 명시되어있지 않더라구요.

DateRangePicker 클래스에서는 open, close 이벤트를 어떻게 구현해야 하는지 문의합니다.

lja1018 commented 3 years ago

@dimorin I'd appreciate it if you could post your questions in English. Currently, open and close events are only open to DatePicker. I will add it after reviewing it.


질문은 영어로 올려주시면 감사하겠습니다. 현재 open, close 이벤트는 DatePicker에만 열려있습니다. 검토 후에 추가하도록 하겠습니다.

lja1018 commented 3 years ago

@dimorin I will guide you again. Currently, there is no way to directly bind events in DateRangePicker, you can use DateRangePicker.getStartpicker() (or getEndpicker()) to get an instance of DatePicker and bind the event to it.


다시 안내드리겠습니다. 현재 DateRangePicker에서 직접적으로 이벤트를 바인드하는 방법은 없고, DateRangePicker.getStartpicker()(혹은 getEndpicker())를 사용해서 Picker의 인스턴스를 가져와 이벤트를 바인딩해서 사용하시면 됩니다.

// example
DateRangePicker.getStartpicker().on('open', () => {
  console.log('startpicker opened');
});