>
> Użytkownik Adrian Klaver napisał:
>    
>> True, I was just trying to stay within the Dabo framework. If that is not 
>> important then the sky is the limit. My guess is you are going to incur more 
>> overhead then just using a Panel. Would be interested in being proven wrong.
>>
>>      
> I'm afraid, I must agree with you. Panel path requires minimum overhead ;)
>
>    

I put my dComboBox on dPanel and still have no tabbed navigation.
Navigation stops on dComboBox control.
What I'm doing wrong? Here is my code:
<code>
import dabo
dabo.ui.loadUI("wx")
import dabo.ui.uiwx.test as test

if __name__ == "__main__":

     class TestForm(dabo.ui.dForm):
         def afterInit(self):
             self.Caption = "dComboBox test"
             panel = dabo.ui.dPanel(self)
             sz = panel.Sizer = dabo.ui.dSizer("vertical")
             sz.append(dabo.ui.dTextBox(panel))
             sz.append(dabo.ui.dTextBox(panel))
             sz.append(dabo.ui.dComboBox(panel))
             sz.append(dabo.ui.dTextBox(panel))
             sz.append(dabo.ui.dComboBox(panel))
             self.Sizer.append1x(panel)

     test.Test().runTest(TestForm)
</code>

-- 
Regards
Jacek Kałucki

_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
Searchable Archives: http://leafe.com/archives/search/dabo-users
This message: http://leafe.com/archives/byMID/[email protected]

Reply via email to