Hi,
your bindind must pass the function/method object, like any regular
python callback passing.
assuming i do
```
def test(*args):
print args
```
I can do
```
my_object.bind(on_something=test)
```
because "test" is a known function name here.
But if i do
```
class MyClass(SomeWidgetClass):
def test(self, *args):
print args
my_object = MyClass()
```
i have to do:
```
my_object.bind(on_something=my_object.test)
```
because "test" is nothing here, we only have "my_object" which has a
"test" method, that's this one we want to pass.
cheers