{% loop in $tvlist as $list %}
{$list.listname} <br>
{$list.ListName}<br>
{$list}<br>
{% endloop %}
the not working class
@AccessAsBean
@AccessAsPojo
public class Info {
private String ListName;
public String getListName()
{
return ListName;
}
public void setListName(String value)
{
ListName = value;
}
}
the working class
public class Info {
private String ListName;
public String getListname()
{
return ListName;
}
public void setListname(String value)
{
ListName = value;
}
}
template
the not working class
the working class
the different is getListname() and getListName()
when has two upper letters is not working