Here is the sixth of our series about developing web applications using Willow. This one is about changing part of the content of your application without reloading the whole page.
The series so far:
1) Introducing Willow
2) Your first Willow application
3) Rendering content in Willow
4) Component Suppliers in Willow
5) User Interaction in Willow
6) Dynamic content loading in Willow (this post!)
As web applications grow in complexity, there is also an increase in the amount of information that must be generated in the server, then sent over to the browser, then presented to the user.
To…
This is the fifth post on our series on how to use Willow to create web applications, where we will cover user interaction.
The series so far:
1) Introducing Willow
2) Your first Willow application
3) Rendering content in Willow
4) Component Suppliers in Willow
5) User Interaction in Willow (this post!)
6) Dynamic content loading in Willow
Whenever someone clicks on a part of your application, changes the content of a field, passes over an image, etc. you might want to have it respond with feedback for the user or register information in your server. …
As part of my personal assignments at Mercap, I chose to review the TensorFlow tutorials.
The objective was to start learning about its features and current capabilities, to consider how to integrate it best into our Smalltalk products.
This post is a summary of the lessons learned during the first week of interacting with the tutorials, APIs, and projects that serendipitously entangled with my own.
Before explaining what I did, let’s talk about the relevance of the task.
TensorFlow is a standard when it comes to Machine Learning. It is managed by Google, used by most tech companies, and has…
This is the fourth post of our series where we continue to learn how to use Willow to create your web applications. This time it’s all about creating web components regardless of your chosen front-end framework.
The series so far:
1) Introducing Willow
2) Your first Willow application
3) Rendering content in Willow
4) Component Suppliers in Willow (this post!)
5) User Interaction in Willow
6) Dynamic content loading in Willow
When creating our web application, we learned in previous posts that we just need to implement #renderContentOn: in a subclass of WAPainter, which in turn can reference other objects…
This is the third in a series of posts about developing web applications using Willow. Here we continue the development of our To Do application.
The series so far:
1) Introducing Willow
2) Your first Willow application
3) Rendering content in Willow (this post!)
4) Component Suppliers in Willow
5) User Interaction in Willow
6) Dynamic content loading in Willow
We mentioned in the previous post that TodoApplication>>#contentView
should declare the content to render. We will use to the concept of a renderable object as provided by Seaside.
Rendering a string means just drawing it on the screen, like we…