Re: [Pharo-users] Willow affordance setValueTo etc

2020-05-17 Thread Tomaž Turk
aText identifyIn: html; changeContentsTo: 'Some text'. Great, it works, thanks. Best wishes, Tomaz

Re: [Pharo-users] Willow affordance setValueTo etc

2020-05-17 Thread Gabriel Cotelli
Hi Tomaz, Just from my memory try: renderContentOn: html | aText aButton | aText := self componentSupplier singleLineTextFieldApplying: [ :theField | ]. aText identifyIn: html; changeContentsTo: 'Some text'. aButton := self componentSupplier asynchron

[Pharo-users] Willow affordance setValueTo etc

2020-05-17 Thread Tomaž Turk
Dear all, I'm playing with Willow and found it very useful for setting the web design, however, I have some challenges with understanding the interaction affordances. They are nicely described in the documentation - although somewhat cryptic. For instance, I cannot successfully set up the #se