I have an NSTableCellView inside a view-based NSTableView. I would like dragging inside a blank area inside the cell view to also move the window. Also when the table view is placed inside an NSPopover, it should be possible to drag its cells to "tear out" the popover into its own window.
I've tried overriding mouseDownCanMoveWindow and returning YES in both the table view and cell view, but this didn't work. I've also tried overriding isOpaque and return NO in both subclasses and still no luck.
Anybody can help?
Thanks in advance.