Mike Mabey wrote:
> I have a simple app that has a radio list with the choices ['1, '2', '3',
> '4'] and keys with the same values. When I run the app, I get the following
> error on the console:
>
> Dabo Error Log: Mon Aug 18 14:18:31 2008: No radio button matching '1' was
> found.
>
> Sometimes after interacting with some of the other controls, it will post
> the following message:
>
> Dabo Error Log: Mon Aug 18 14:18:38 2008: No radio button matching '0' was
> found.
>
> Has anyone seen this before? I'm a little lost because I don't have any
> reference to what part of my code is generating the error.
From what you describe, you want settings like the following:
class MyRadioList(...)
def initProperties(self):
self.Choices = ["1", "2", "3", "4"]
self.Keys = {"1": 0, "2":1, "3":2, "4":3}
self.ValueMode = "Key"
Does that look like what you've done?
Paul
_______________________________________________
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]