| To: | REALbasic NUG <realbasic-nug@lists.realsoftware.com> |
|---|---|
| Subject: | Re: Incorrect tabbing in editable listbox |
| From: | Tom Benson <tombenson@mac.com> |
| Date: | Thu, 29 Jan 2009 19:12:23 +0000 |
| Authentication-results: | mx.google.com; spf=neutral (google.com: 74.124.194.228 is neither permitted nor denied by best guess record for domain of realbasic-nug-bounces@lists.realsoftware.com) smtp.mail=realbasic-nug-bounces@lists.realsoftware.com |
| Delivered-to: | listarchive@realsoftware.com |
| In-reply-to: | <4981FD59.4030502@inspiringapps.com> |
| References: | <4981FD59.4030502@inspiringapps.com> |
| Reply-to: | REALbasic NUG <realbasic-nug@lists.realsoftware.com> |
| Sender: | realbasic-nug-bounces@lists.realsoftware.com |
I thought that had always been the case??For as long as I remember I've had to handle tabbing between cells myself... - Tom On 29/01/2009, at 7:02 PM, Joe Strout wrote: Here's a new one, to me at least: In 2008r5.1, when you press Tab while editing a cell in an editable listbox, the focus jumps to the first control in the tab order, rather than to the next cell (which is also editable).This is doubly incorrect, it seems to me -- even if it weren't going toedit the next cell (which it should), it should go to the next control after the listbox. But it doesn't do that either. I can probably work around it in CellKeyDown, but sheesh, what a pain. Thought y'all would want to know... Best, - Joe
Simple example (doesn't handle column bounds etc...)
CellKeyDown
if key = kTabKey then
me.editcell(x+1,y)
return true
end
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives:
<http://support.realsoftware.com/listarchives/lists.html>
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: How to read binary plist files with RB?, Tom Benson |
|---|---|
| Next by Date: | method parameter as array, Tony Alfrey |
| Previous by Thread: | Incorrect tabbing in editable listbox, Joe Strout |
| Next by Thread: | Re: Incorrect tabbing in editable listbox, Brad Rhine |
| Indexes: | [Date] [Thread] [Top] [All Lists] |