[dabo-users] dTextBox - DisabledBackColor

2013-06-04 Thread Ricardo Aráoz
Does dTextBox have a DisabledBackColor property, or something similar? Haven't been able to find it. ___ Post Messages to: Dabo-users@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/dabo-users Searchable Archives:

Re: [dabo-users] dTextBox - DisabledBackColor

2013-06-04 Thread Ed Leafe
On Jun 4, 2013, at 9:28 AM, Ricardo Aráoz ricar...@gmail.com wrote: Does dTextBox have a DisabledBackColor property, or something similar? Haven't been able to find it. Not 100% sure, but I think that's controlled by the underlying OS. -- Ed Leafe

[dabo-users] Super doubts

2013-06-04 Thread Ricardo Aráoz
i) Looking through the mails of this list I've found two uses of super a) self.super() b) super(MyDateTextBase, self).initProperties() A couple of questions : 1) What is the difference? What's the different use of both? 2) in b), is it really necessary to use

Re: [dabo-users] Super doubts

2013-06-04 Thread Ed Leafe
On Jun 4, 2013, at 11:06 AM, Ricardo Aráoz ricar...@gmail.com wrote: i) Looking through the mails of this list I've found two uses of super a) self.super() b) super(MyDateTextBase, self).initProperties() A couple of questions : 1) What is the difference? What's the

Re: [dabo-users] Super doubts

2013-06-04 Thread Ricardo Aráoz
El 04/06/13 13:34, Ed Leafe escribió: On Jun 4, 2013, at 11:06 AM, Ricardo Aráoz ricar...@gmail.com wrote: i) Looking through the mails of this list I've found two uses of super a) self.super() b) super(MyDateTextBase, self).initProperties() A couple of questions : 1)

Re: [dabo-users] Super doubts

2013-06-04 Thread Ed Leafe
On Jun 4, 2013, at 11:41 AM, Ricardo Aráoz ricar...@gmail.com wrote: And yes, it is the class name. I know about PEP8, but I'm exercising my best judgement as PEP8 recommends in it's second topic. ;c) Who cares about PEP8? ;-) http://wiki.dabodev.com/CodingGuidelines -- Ed

Re: [dabo-users] Super doubts

2013-06-04 Thread Ricardo Aráoz
El 04/06/13 14:02, Ed Leafe escribió: On Jun 4, 2013, at 11:41 AM, Ricardo Aráoz ricar...@gmail.com wrote: And yes, it is the class name. I know about PEP8, but I'm exercising my best judgement as PEP8 recommends in it's second topic. ;c) Who cares about PEP8? ;-)

[dabo-users] Two column RadioList

2013-06-04 Thread Ricardo Aráoz
So today is Question Day... I need to use a dRadioList, but I need it to be split in two columns in this way : opt1 oopt2 o opt3 oopt4 o opt5 o. Now the only example I came by in the DaboDemo is in dGrid but it's a short list of choices and only one

Re: [dabo-users] Two column RadioList

2013-06-04 Thread Ed Leafe
On Jun 4, 2013, at 12:52 PM, Ricardo Aráoz ricar...@gmail.com wrote: I need to use a dRadioList, but I need it to be split in two columns in this way : opt1 oopt2 o opt3 oopt4 o opt5 o. Now the only example I came by in the DaboDemo is in dGrid but it's

Re: [dabo-users] Super doubts

2013-06-04 Thread Ricardo Aráoz
El 04/06/13 13:34, Ed Leafe escribió: On Jun 4, 2013, at 11:06 AM, Ricardo Aráoz ricar...@gmail.com wrote: i) Looking through the mails of this list I've found two uses of super a) self.super() b) super(MyDateTextBase, self).initProperties() A couple of questions : 1)

Re: [dabo-users] Two column RadioList

2013-06-04 Thread Ricardo Aráoz
El 04/06/13 15:36, Ed Leafe escribió: On Jun 4, 2013, at 12:52 PM, Ricardo Aráoz ricar...@gmail.com wrote: I need to use a dRadioList, but I need it to be split in two columns in this way : opt1 oopt2 o opt3 oopt4 o opt5 o. Now the only example I came by

Re: [dabo-users] Two column RadioList

2013-06-04 Thread Ed Leafe
On Jun 4, 2013, at 2:30 PM, Ricardo Aráoz ricar...@gmail.com wrote: I tried running a quick test, but it looks like dRadioList doesn't deal with grid sizers very well - the _checkSizer() method expects regular sizers. I don't know how that changed, since one of the goals for creating

Re: [dabo-users] Super doubts

2013-06-04 Thread Ed Leafe
On Jun 4, 2013, at 2:22 PM, Ricardo Aráoz ricar...@gmail.com wrote: I MUST be doing something wrong, here's part of my code : class pnlPuertoSerial(dabo.ui.dPanel): def __init__(self, *args, **kwargs): super(pnlPuertoSerial, self).__init__(self, *args, **kwargs) No need to even

Re: [dabo-users] Two column RadioList

2013-06-04 Thread Ricardo Aráoz
El 04/06/13 16:55, Ed Leafe escribió: On Jun 4, 2013, at 2:30 PM, Ricardo Aráoz ricar...@gmail.com wrote: I tried running a quick test, but it looks like dRadioList doesn't deal with grid sizers very well - the _checkSizer() method expects regular sizers. I don't know how that changed,

Re: [dabo-users] Super doubts

2013-06-04 Thread Ricardo Aráoz
El 04/06/13 16:58, Ed Leafe escribió: On Jun 4, 2013, at 2:22 PM, Ricardo Aráoz ricar...@gmail.com wrote: I MUST be doing something wrong, here's part of my code : class pnlPuertoSerial(dabo.ui.dPanel): def __init__(self, *args, **kwargs): super(pnlPuertoSerial, self).__init__(self, *args,