I have a javascript application where I'd like to add autocompletion to a form. Therefore, I render an array containing all available names in the controller so the array is available ...
I am creating a web application that will have 2 view modes. One mode is just normal web site. The other view mode will be as a facebook app. In facebook, ...
We're currently doing a project that accepts user-provided html and has our own injected into it. This perfectly matches Play's abilities. However, I am at a loss as to ...
I really love Play! It has great features but still I'm missing some basis advantages of code editing. For example, I'm used to Eclipse and I would really like to continue ...
I have a web app which has 3 page views.
1.an index page where all Items in db are listed ,and details of only the Item with latest creationDate are shown.
2.An itemDetails ...
Some of my Play Framework views will accept normal request (GET via a link) and ajax request (called from a javascript code if the user have js enabled).
My actual problem is ...
I want to have multiple controller methods point to a single view.
the Messages controller will have two methods, newMsg and newMsgWithParent that each point to app/views/newMsg.html, and the view will ...
From a master html template I'm calling #{doLayout} which renders my view html. I'd like to call a custom html template as well such as #{happyHeader} which I'd like to define ...