You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I try to replace event to flx, also not work. Thanks.
Thisexampledemonstrateshowapropertycanbesettofollowotherpropertiesbysettingthepropertytobeafunction, whichisconvertedtoareactionbyFlexx.
Thisfeaturemakesbasicplumbingveryeasy, likee.g. showingvaluesofpropertiesinalabelwidget.
"""
# todo: also a one-liner to invoke actions from emitters (issue #425)fromflexximportflxclassPerson(flx.Component):
first_name=flx.StringProp('Jane', settable=True)
last_name=flx.StringProp('Doe', settable=True)
classGreeter(flx.Component):
message=flx.StringProp('', settable=True)
@flx.reactiondefshow_message(self):
print('Message:', self.message)
p=Person()
# This is the line that this is aboutg=Greeter(message=lambda: p.first_name+' '+p.last_name)
print(p.first_name,p.last_name,g.message)
p.set_first_name('Alice')
print(p.first_name,p.last_name,g.message)
flx.loop.iter()
print(p.first_name,p.last_name,g.message)
The text was updated successfully, but these errors were encountered:
https://flexx.readthedocs.io/en/stable/examples/oneliners_src.html#oneliners-py
oneliners.py did not work as expected
The message still empty.
I try to replace event to flx, also not work. Thanks.
The text was updated successfully, but these errors were encountered: