Tagged Questions
0
votes
2answers
151 views
How do I invoke a template from another template in Play Framework?
I have a template accountlist.scala.html looking like this:
@(accounts: models.domain.AccountList)
@titlebar = {<p>some html</p>}
@content = {
@for(account <- accounts) {
...
0
votes
1answer
83 views
How to redirect to another page using Scala Template
I have two html pages: /algorithrms and /algorithms/add written in scala template. The route file contains following lines:
GET /algorithms controllers.Application.algorithms()
...
0
votes
2answers
96 views
How to use scala and html code inside single block
why option html element is not binded inside select in case 1?
Case 1: not work
@base{
<select name="" value="" class="custom-select">
@{
println("1"); // this is printed to console ...
0
votes
1answer
244 views
Using the Playframework Scala @select template - onchange event
I am using the playframework 2.0 with scala and I am facing many problem with the @select template.
So what I have is a @select field as part of a Form (the Form shouldn't be interesting here):
...
0
votes
1answer
74 views
Play framework 2 display video on the page
I have class Article :
@Entity
public class Article {
@Id
public Long id;
@Constraints.Required
public String title;
@Formats.DateTime(pattern="yyyy-MM-dd")
public Date added;
...
0
votes
1answer
212 views
How to render plain html in Play 2.0
I'm working on learning JSP and the Play framework, and I understand that it runs on Scala and renders views based on templates, but what if I just want to use plain HTML rather than scala templates?
...
1
vote
1answer
250 views
How to substring HTML characters non-escaped with Groovy in Play Framework
Solutions to unescape characters are :
#{verbatim} ${mycontent} #{/verbatim} or ${_news.content.raw()}
But is there an easy way to substring HTML characters with Groovy in Play Framework?
2
votes
4answers
216 views
Safe html in java
I have some input containing HTML like <br> <b> <i> etc. I need a way to escape only the "bad" HTML that exposes my site to XSS etc.
After hours of Googeling I found the GWT which ...
0
votes
1answer
171 views
How to Display form validation errors
I wonder how to display the error message from my model in the fucntion validate() thats returns "invalid username or password" when the submit is not "valid"
index.scala.html
@(myForm: ...
1
vote
1answer
416 views
Play 2 - templates without helpers
@inputText(
signupForm("email"), '_label -> "Email",
'_help -> "Enter a valid email address."
)
How would I write this in pure html?
I have no idea ...
1
vote
1answer
1k views
HTML forms with java Play Framework 2
am using a form with just one input text and one submit button. I want to forward the text from the input text field to a controller at the backend. perhaps if you take a look at the code snippet it ...
-1
votes
1answer
307 views
Input file and auto submit - Play framework 2
How can I write an auto submit form (for file uploading)? I've tried to add onchange in <input> field:
@form(action = routes.Application.upload, 'enctype -> "multipart/form-data") {
...
0
votes
1answer
181 views
Play Framework: Html Template content not escaping properly
im trying to populate a list in an html template using a prexisting module
@{Nav.list.map( l =>
l.id match {
case "Art" => { <li ...
1
vote
1answer
92 views
How to send the object into the Scala view
How to send the object into the Scala view
I have written these files, and when im trying to build them I getting this error, that is described in the bottom
app/views/timeline/index.scala.html
...
3
votes
1answer
405 views
Display All Validation Errors Using flash()
I am using Java Play 2.0.1 with both custom validation and the play.data.validation.constraints, and am looking for a means to display every error that occurs in the form regardless of whether my code ...
0
votes
1answer
193 views
playframework 2.0 streaming audio
So im using playframework 2.0 and I am successfully streaming audio using the following code on the server:
public static Result recording() {
File wavFile = new File("C:\\test.wav");
return ...
1
vote
1answer
202 views
Set element id = javascript function
So I have an issue that I'm not 100% sure on how to solve. Im looping through a list of strings and creating multiple forms, what I want to do is set the id of the elements to the string minus spaces.
...
0
votes
1answer
82 views
How to post external references in playframework2.0
I have a school project, for which I want to develop a web application similar (but simplified) to reddit. reddit My problem is that I can't seem to be able to post references/hyperlinks that point ...
4
votes
3answers
2k views
Play 2.0 autocomplete reverse routing not working
I'm having difficulties getting an autocomplete search box to work with Play 2.0. I'm trying to do the same thing as described in this article, only with Play 2.0.
Basically, I defined an action:
...
