Re: Setting the focus into an NSTableView?
Re: Setting the focus into an NSTableView?
- Subject: Re: Setting the focus into an NSTableView?
- From: Tom Waters <email@hidden>
- Date: Wed, 13 Jun 2001 21:05:34 -0700
On Wednesday, June 13, 2001, at 05:57 PM, Matt Ridley wrote:
Is there a way I can programmatically place the keyboard focus into the
table after I've selected the first row?
assuming you have window pointing to the sheet's window, and tableView
pointing to the NSTableView:
[window makeFirstResponder: tableView];
(lockFocus is for rendering, not keyboard focus)