Tagged Questions
0
votes
0answers
65 views
Spring 3.2 + Hibernate + ZK or JSF2 vs Play Framework 2.1.1 + Hibernate + JQuery [closed]
What will be your pick from these 2 for future projects? I'm trying to choose one of these 2 to use in future for all web and mobile apps. The applications will vary, sometime it will be simple with ...
0
votes
1answer
39 views
Uploading file to play controller using jQuery Post
Can you please provide me a sample for uploading/ posting a file to play controller using jQuery
I am using play 2.0.1 and jQuery 1.7.2
Thanks in advance!!
0
votes
1answer
77 views
Improving play template with javascript code
I have a play-template with javascript code in it. Everything works but it has two disadvantages:
Bad readability with eclipse-play-plugin, javascript is not colored in code highlighting
I can't ...
0
votes
3answers
56 views
Remove Dom Element with jQuery
I try to remove a div out of the dom-tree with jquery in a play application like this:
<form class="form-search">
<input type="text" class="input-medium search-query" ...
0
votes
2answers
139 views
unchecked checkbox can't be set to be checked by Jquery or Javascript in scala play framework 2.0.4?
It is reasonable to let unchecked box based on user's choice, but
the unchecked box always causes form error in the server side,
def config(path: String) = Action { implicit request =>
...
0
votes
0answers
68 views
Handling chunked responses at high-level in javascript
In case of slow server side actions, it is a good idea that the server could return a chunked response, so that the user experience is better, for example in the case of travel websites (look at ...
0
votes
0answers
85 views
From javascript call play 2.1 controller function that returns json data object
How to make play 2.1 controller function execute a captured external url and return json data object to javascript.
First of all InputStream is not opening an external url. errors out saying no ...
2
votes
4answers
127 views
Pulling data from json file to use in .$post in Jquery
I'd like to pull data from a json file to post it to the server side.
This kind of data decleration works:
$.post('/createDBJSON',{'name':'bar'},
function(data) {window.alert(data);}
However I ...
1
vote
1answer
103 views
Play action not responding to json posted
I'm new to play and I am trying to post form data to my Play Action using JQuery. However, I'm getting "expected json" response from Action. I check the HTTP Headers to ensure that the data is being ...
0
votes
2answers
136 views
Play framework 2.0.4 select box sort order
I am currently implementing a UI in play 2.0.4, but I am having problems with the @select helper that I am using for creating a select box. I bind the select to the method Test.methodName which ...
1
vote
1answer
207 views
JQuery TokenInput not displaying search result
I am using jQuery Tokeninput to display the emails of user, Actually I am trying to invite users. When I click on the input text and type some email it always say no result even if that email exists.
...
0
votes
1answer
409 views
Using jquery with play framework 2.0
I want to use jQuery to open a lightbox but it is causing the problem.
Here is my Application.java code:
@(products: List[Products])
@import helper._
<script ...
1
vote
1answer
102 views
JQuery iteration over JSONs Map of lists generated via Scala Play 2.0
Given the following Scala in my Play Controller (reduced for the sake of brevity):
object Sample {
def apply(someArgToBeUsedLater: String) = {
val success = Map("foo" -> ...
3
votes
2answers
255 views
File upload via Websockets to Play Framework 2.0
I'm using Play Framework 2.0, Javascript and WebSockets.
As in the example I have an AKKA actor that has knowledge of all the websockets. The single WebSockets.In have a ListenerCallback object that ...
0
votes
1answer
349 views
play framework routes trouble (400 bad request)
I'm having trouble making a POST to the play framework - this may not even be Play related as much as HTTP related.
$.ajax({
type:'POST',
url:'http://localhost:9000/start',
data: {
...
3
votes
1answer
163 views
Playframework Comet socket catch disconnect on client side
So I'm implementing an application that requires messages to be sent to the browser in real time. Currently this is working fine. When I receive a message I an Untyped Actor similar to the clock ...
0
votes
0answers
55 views
data-ajax equivalant in jquery
I have an iPad application which accesses available web application into it (which is not built using jquery mobile). In that application, when I click on submit of some form, it goes to safari and ...
2
votes
1answer
354 views
Direct file upload using Ajax or JQuery (with or without a form)
I'm trying to use the second "Direct file upload" method described at the end of the page here: http://www.playframework.org/documentation/2.0/JavaFileUpload
How do I implement the required ...
1
vote
1answer
360 views
Play framework and javascript i18n
I'm working with getting javascript localization to work my play 2.0 app using twitter bootstrap and jquery with Jquery UI. The localization I'm aiming at requires messages for the validation plugin, ...
0
votes
1answer
1k views
Jquery mobile ajax call isnot working (Crossdomain)
I have two projects running seperately one is a simple static HTML5 website hosted on IIS which Iam evaluating for my mobile application on port number 90.
secondly I have a webserver running for ...
0
votes
1answer
839 views
ajax submit form in play framework
I am trying to submit a form using jsRoutes in ajax after first doing a validation of the input using jquery form validation plugin. The problem is that when I add "data : form" to the parameters to ...
0
votes
1answer
70 views
Error while loading file in jquery forntier calendar
I am using play 2.0.2. and implemented jquery calendar plugin in play. To load events to calendar i need to load a file. But when i am doing from play i am getting loading error.
the code written is
...
0
votes
2answers
1k views
Scala sample app for Play 2 with Jquery
Can you recommend any working Scala example that is using JQuery and Play 2.0? I only found a simple Java version. I would like to see how I can configure the UI with Jquery and Play templates
Thanks
5
votes
3answers
2k views
ajax success function is printing [object Object] instead of plain text. Why?
function ajaxsubmit(){
$.ajax({
url: "/update",
type: "POST",
dataType: "html"
}).success(function(data) {
$('#result').html(data);
});
}
and my java function:
public static ...
0
votes
1answer
196 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 ...
0
votes
1answer
311 views
Pass customized object to jQuery pop up in onclick event
I am using play framework 2.0. I have a list of items displayed in the scala template by iterating a list(List) of User object. Each user object is displayed in div's as,
<div ...
0
votes
1answer
591 views
Server side validation in playframework 2.0 in a jquery pop up
I am using play framework 2.0.1. I have a form in a jquery pop up in which I have to validate in the server side and display the validation message WITHOUT CLOSING the pop up.
I've tried to use java ...
2
votes
1answer
455 views
How to migrate Play Framework 1.x project to 2.0
I am new to play technology. I was actually searching for a calender app developed on play and i got the source code of the calender from one of the website. The problem is that i am using play ...
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:
...


