I haved generated simple CRUD application from seam-gen using seam generate-ui command, but the edit page for insert data into database was genated and orderd by name.
For example if entity class contain name,lastname
and age
. Seam-gen will generate and ordered field list to age,lastname, and name (order by name).
The question is how do I config to reorder those input field to my requirement. such as from age,lastname,name
to name, lastname
and age.
Thank you for the answer.