Firstly, I am new to this framework, actually just learned about it
this morning, and already trying to code some things in it. Seems
pretty useful!
I made a class extending AbstractComplexEObject, when I run the
application, the class name appears on the side menu, with a nice
default icon. How do i change it so the title that appears in that
menu is not the class name? Tried playing with the @Entity(name =
"different name") but that didnt do it..
Any help?
10x,
Shlomi
It has to do with setting the desired name in the locale-
metadata.properties file (or any specific one for a certain locale).
also, dont forget to set the plural form of the name, and add :
public static String pluralName() { return "desiredName"; }
where the 'desiredName' is the entry in the properties file.
Thank you!