From: Phil E. <ph...@li...> - 2005-04-04 12:48:14
|
On Sun, 2005-04-03 at 12:04, Alex Tweedly wrote: > Is there any way to control the tab order for components created > dynamically from the app ? > AFAIK, Alex, it's just down to the order they appear in self.components. So if you have: ['button1', 'button2', 'button3'] and you then do self.components.insert(1, 'button4'), you should end up with ['button1', 'button4', 'button2', 'button3'] then that's your TAB order, reading from left to right. -- Regards Phil Edwards Brighton, UK |