0
votes
0answers
26 views
Can't send a variable to javascript from java
I'm fetching a url and trying to send it's text content to a javascript function inside a webview.
I do this from the java code:
HttpClient client = new DefaultHttpClient();
HttpGet request = new ...
0
votes
0answers
11 views
Dynamic Audio Manipulation
I was playing a game called Beat Hazard, and was wondering how it was done? Beat Hazard allows you to select a song from your library. You play an "asteroids" game while the background flashes to the ...
0
votes
1answer
16 views
How to embed c-span videos in my web page
How can I embed c-span videos in my web page. Does a c-span API for Java, or JavaScript exist. I don't want to put the entire videos web page in an iframe. I just want the video itself embedded in my ...
2
votes
2answers
26 views
What's the GWT Developer Plugin Protocol
On the GWT overview page it reads:
The GWT developer plugin spans the gap between Java bytecode in the debugger and the browser's JavaScript.
Thanks to the GWT developer plugin, there's no ...
0
votes
2answers
27 views
jQuery+Spring remove from database
I have a project using Spring and i need to create admin page using jQuery. I have a table with all users and i have a button "delete". When i click it user should be deleted from the database. ...
-4
votes
0answers
34 views
Looking for sample Network-Based JavaScript to hide inside PDF [on hold]
so i'm working on a project in which i have to embed a network-based javascript into a pdf. When i open the pdf, the javascript is supposed to automatically execute. Now my question is, where can i ...
0
votes
3answers
34 views
Restricted pages with client side templating
We've always used server side templates ( .JSP ) for web apps but now we're using Angular for a big project. It starts making sense to use client side templates, although some security questions have ...
-2
votes
1answer
30 views
Third party payment gateway in android In app purchase? [on hold]
I want to add thirdparty payment gateway in my application for particular thing.can we use third party payment gateway for in app purchase features. please anyone help me
2
votes
1answer
35 views
How to print in reciept printer with jzebra applet
After googling from last week, i didn't find anything helpful or well written answer, i am posting my question.
I want to make print from reciept printers on website, with jzebra applet.
I have tried ...
1
vote
1answer
51 views
Regex for finding Java's format strings in JavaScript
In Java/Android, you can use Format strings to specify how some outlook is expected to look like. These Format strings can be passed to String.format() or Formatter(), for example.
Simple examples ...
0
votes
0answers
29 views
Block potentially unsafe components from being run? Javascript using applet's methods
Every time I run this code:
var server = document.applets['argonite'];
server.setServer("b");
I get this warning popup:
setServer is a method in my java applet:
public void setServer(String ...
1
vote
0answers
18 views
Upload blobs to server side disk using Java Spring, which are sent using XMLHttpRequest Formdata
My form is sending a video and audio blobs as a POST request using XMLHttpRequest
At server side Spring controller -- I would like to retrieve the HTTP request and pass those two blobs and save it to ...
-6
votes
0answers
52 views
Dynamic browser which changes the page with mouse cursor with fade in and out [on hold]
I have been thinking about making a browser that swaps between tabs with use of the mouse cursor with a beautiful effect just like on Ubuntu desktop swapping.
Any idea on how I could implement a tab ...
1
vote
1answer
69 views
how to pass list from javascript to spring controller
I have issue of how can javaScript can pass two sepparate lists to spring controller. On my freeMarker template I made option to change set of two lists.
This is render of two lists:
EDITED: I found ...
0
votes
0answers
25 views
PhoneGap Android Plugin: Failure Callback not getting called
I developed an Android PhoneGap Plugin.The plugin is successfully getting called, but the success callback is getting invoked in failure callback function in JavaScript..
In JavaScript code i'm ...