I define a simple command function
def ui_evt_save(event=None):
wire it in into a button,
but when it triggers the event parameter is still None,
I would need a way to get the caller instance (e.g. multiple buttons wired into one cmd handler)
def ui_evt_save(event=None):
event.callee.setSomething()