Not sure what I am doing wrong.
I am getting this exception from .tml file
Parameter 'selected' of component zone/Edit:stores is bound to null. This
parameter is not allowed to be null.
In my .tml file I have
<style>
DIV.t-palette SELECT { width: 300px; }
</style>
- - - - -
- - - - -
<t:palette t:id="stores" selected="stores" encoder="storeEncoder"
model="storesModel"
t:deselect="context:images/arrow_left_new.png" validate="required"
t:select="context:images/arrow_right_new.png" >
In my java class I have:
@Property
private List<Store> stores; // Store is a simple pojo
The class doesn't have any 'selected' variable but does have some
'onSelectedXXXX' method.
I have checked other posts related to the same issue but those are not
exactly the same problem.
I will appreciate any suggestion.
Thanks.