I'm just getting started with Tapestry 4.0 and had a quick question:
Is it possible to omit the value attribute on a component and still have
Tapestry intelligently bind to a corresponding property on my page class.
In other words, given the following, will Tapestry successfully bind?
Page:
.
<input jwcid='[EMAIL PROTECTED]'/>
.
Page Class
public abstract class MyPage extends BasePage {
public abstract String getEmail();
.
}
I'd give it a shot, but I don't have a working installation yet (working on
my first page) and this seemed like a simple question.