DatePicker in javafx TableCell

前端 未结 4 1381
挽巷
挽巷 2021-01-22 18:31

I have implemented a custom datePickerTableCell to show a date picker on cell edit. I am using the ExtFX DatePicker (https://bitbucket.org/sco0ter/extfx/overview). Everything wo

4条回答
  •  南方客
    南方客 (楼主)
    2021-01-22 19:31

    I faced a similar issue when using a TextArea as table cells. The issue turns out to be I was using startEdit in the TableCell implementation. Using TableView#edit instead of startEdit resolved the issue.

提交回复
热议问题