I'm getting this error in the console:
[ERROR] FormPage Embedded component(s) beaneditform are defined within
component class com.[...].pages.FormPage, but are not present in the component
template.
when I have this template:
<head>
<title>Form</title>
</head>
<body>
<h1>Form</h1>
<t:beaneditform object="bean" />
</body>
</html>
and this page class:
public class FormPage {
@Persist
private Bean bean;
@Component
private BeanEditForm beaneditform;
which I presume is coming from the @Component. The question is: why can't it
find the beaneditform component? It sure looks like it's there to me. Does it
have some other name?
thanks,
Franz