Tagged Questions
0
votes
0answers
26 views
How to replace a value of SRC parameter within EMBED tag of HTML?
I am working on application in Java that is displaying HTML pages of different places all over the world. I have an object containing youtube video embedded into my HTML page like this:
<object ...
0
votes
0answers
8 views
Jolokia / JMX authentication in Javascript app
I develop a javascript-based frontend for JMX / jolokia backend. Basically, the tool should be a prettier html5-based JConsole for people, who don't code in Java.
My question is, how am I supposed ...
0
votes
1answer
18 views
How to initialize a char array to accomodate the HTTP POST Content-Length
I'm writing an HTTP server (for learning purposes). Once I receive an HTTP POST request, I want to print the parameters that were sent by the client, the problem is that I'm sending "name=Marcelo" and ...
0
votes
2answers
41 views
jquery load array parameter to spring mvc controller
I am trying to pass long array from jquery load to spring controller. I have passed string variable succefully but not the array.
javascript:
function ModuleMemberCheckboxPassIds(){
var ...
0
votes
3answers
81 views
why does \B works but not \b
Wanted to match a word that ends with # like
hi hello# world#
I tried to use boundary
\b\w+#\b
and it doesn't match.I thought \b is a non word boundary but it doesn't seem so from this case
...
0
votes
2answers
22 views
FXML, script tag and initialize method
I am testing and discovering JavaFX.
In JavaFX FXML documentation about controllers, it is said that if the controller has a public void initialize() method, it is called once the FXML graph is ...
3
votes
1answer
80 views
How to click on a javascript button in htmlunit
I'm trying to click on a search button in this website:
http://www.amadeusepower.com/trek/portals/trek/default.aspx?Culture=en-US
The button is in here somewhere
<table cellpadding="0" ...
0
votes
2answers
14 views
Call javascript function in applet declaration
I created a small applet for my sister's blog that flashes colors randomly. She wants to set it as her background for her webpage. I've already figured out how to find the size of a web page and all ...
-7
votes
0answers
32 views
Facebook Application for users [closed]
I want to create a facebook app but i don't know how.I want this app to catch all personal data from the user and generally i want to see their daily actions.This app of course will be accepted only ...
0
votes
1answer
19 views
Android (phonegap) Click on an input triggers different keyboards, randomly
I'm developing a phonegap application for android.
If you're not familiar with phonegap, just know that it's an app containing a webview, the rest is made of html/js.
I have a normal input, and when ...
1
vote
2answers
37 views
Use the same regular expressions across languages like Java and Javascript etc [closed]
Just now I want to learn how to build regular expressions. When I am going to search in Google, the suggestions are
regular expressions for Java
regular expressions for Javascript .... etc
Can I ...
0
votes
1answer
24 views
backbone.Marionette.js with spring or java complete tutorial [closed]
i am learning Bacbone.marionette.js now for single page application with spring. I am able to find many tutorials on backbone.marionette.js but not able to find one on integrating the same with spring ...
0
votes
0answers
32 views
In 2013 is there a live scripting plugin for Eclipse?
Over the years there have been a number of ventures to support scripting in Eclipse.
The most successful ones have provided a dedicated Editor plugin to compile & run code in scripting languages. ...
0
votes
0answers
32 views
Create file containing html code of a dynamically built form
I have made an EForm builder that enables user to dynamically create a form by dragging and dropping the form elements. Now what I want to do is that when a user saves his form, a file containing the ...
0
votes
1answer
61 views
getting values in pop up window
I have a struts time picker in my parent page like
<sx:datetimepicker id="value1" name="value1" label="Format (dd-MMM-yyyy)"
displayFormat="dd-MMM-yyyy" value="" />
<sx:datetimepicker ...
0
votes
3answers
45 views
jsp method is not functioning properly inside javascript method
In my jsp page
I have a jsp button like this.
<input class="submit_button" type="submit" name="Payment" value="Payment"
style="position: absolute; left: 350px; top: 130px;"
...
0
votes
0answers
22 views
Getting videoplayback file from javascript (downloading videos from server)?
I am trying to learn how to create video downloaders. This is a previous question: Getting a youtube download URL from existing url?.
The problem is that many websites use .swf objects and adobe ...
-2
votes
4answers
56 views
JavaScript to standard Java conversion issue [closed]
I have a JavaScript Method and I need to convert this in standard Java, however I have a little problem with the lines
if (jsum) sum += bj;
jsum=!jsum;
and
return x < 0.0 && (n & 1) ...
0
votes
1answer
36 views
Connecting Google App Engine with Javascript client
I have a diagram editor application (client), which is written in javascript. I need to take the model of the diagrams (can be transformed to text), and synchronise it with my GAE Java application ...
0
votes
0answers
34 views
Is it wise to disconnect the UI layer from the backend in mobile web apps? [closed]
What's the future when it comes to mobile web development?
I mean, traditionally, in the java world, we make use of Java EE technologies such as Spring, Hibernate and some MVC framework like Spring ...
0
votes
0answers
11 views
how to introduce the device with JXIput
I am a student at university and I am beginner at java.
I want to use steering wheel console in my java project.
I have heard that I should use JXIput and I get the JXInput library and I import it my ...
0
votes
1answer
15 views
DRW errorHandler always returns “Error” as the error message instead of a real message
FiltersManager.getAllServices({
callback : updateServiceFilter,
errorHandler : function(message) {
alert(message);
}
});
...
2
votes
2answers
45 views
Java spring based webapp vs pure javascript webapp [closed]
I have two options infront of me for web development.
Can you guys share your views on which projects suits for each of the paths:
path 1: java + spring on server side and javascript/html on front ...
0
votes
1answer
50 views
Button not visible
I want to click on "Open device Access" button but when i click on accordion, the button "Open device access is not display.
I think that javascript is not active because the transfert between ...
0
votes
2answers
43 views
null pointer exception in selenium code using java
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
import com.thoughtworks.selenium.DefaultSelenium;
import com.thoughtworks.selenium.Selenium;
public class RedBus {
...
0
votes
2answers
49 views
Running javascript in an android app?
There's a website which provides some javascript which emits information I need, is there a way through androids APIs, to use this javascript to emit whatever information it has and parse through it?
...
0
votes
2answers
50 views
How we can give same name to the multiple textbox which are created by a loop
I have created multiple textboxes/textfields using a for loop in JSP (or Struts2). The textboxes/textfields are created at runtime based on the condition, therefore i am unable to say exact number of ...
0
votes
0answers
34 views
JQuery Selectable for Table
I am very new to jQuery, after reading jQuery docs I am trying to implement jQuery selectable for table. Yes I did succeed, but if suppose I am using a 3*3 table.
My requirements:
I am using ...
0
votes
1answer
43 views
Regular expression for Primary and Unique key [closed]
What will be the Regular expression to find PRIMARY KEY and UNIQUE KEY ::
Sample create query:
CREATE TABLE `empiccrdb` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`ccrId` INT(11) NOT NULL DEFAULT ...
0
votes
2answers
30 views
Delete particular data from Json url using android
I have get muliple data from Json url using android.but i need to delete Particular data in json url using android.how to delete specific data from json url?.
0
votes
2answers
15 views
Running php file with Open Source Job Scheduler
I have a php file test.php. I want to run it with Open Source Job Scheduler at specified intervals. How can I do that? Should I create a xml file for it?
I read the documentation
...
0
votes
1answer
34 views
Start when data to show in datetime chart (Highcharts)
I am working on an all year chart, but I have a little trouble.
The chart start from January, where there is not data to show until May. Client only want the chart to star when there is data to show, ...
2
votes
1answer
27 views
Rhino: Access Java interface variables in Javascript implementation
Rhino: How to access Java interface variables in Javascript implementation?
I expose a java interface for some other party to let them provide an implementation for the same in javascript.
public ...
0
votes
1answer
28 views
Javascript call java function with consuming operation on Android webview
I develop android with phonegap.
There is a communication between javascript and java.
var img = server.getImage(); //javascript code
"Server" has defined as:
mWebView.addJavascriptInterface(new ...
-3
votes
1answer
90 views
For web development which technology stack should a web startup embraces between Node.js & Js friends and Scala/Play 2.0/Akka [closed]
Thinking about the web development trends for the next years and considering the internet of the things and the mobile world, which group of technologies is more suitable for a startup with the ...
0
votes
0answers
10 views
Are there any plugins to handle frames and framesets for slenium ide?
From what I have experienced:
The selenium ide does not record frame and also window changes.
But it should.
And I think it's feasible.
I want to write a plugin but I want to make sure such a plugin ...
0
votes
0answers
23 views
3D library computable with JSF
I need to create 3D animation in my project (JSF)
I am looking for a 3D free libraries which can be used in a JSF web application.
The API should be computable with IE, Chrome & FF, easy to ...
-1
votes
0answers
26 views
0
votes
0answers
25 views
Need to block user input using jQuery BlockUI during a Java call
I'm trying to use jQuery BlockUI to prevent user activity on a page that is refreshed using Java content. The plugin: http://www.malsup.com/jquery/block/
The problem is that there is no event being ...
1
vote
0answers
18 views
Java Scripting (jsr223): is it possible to (re)add the rhino compile feature
Oracle incuded a stripped rhino in jdk6
One of the stripped features is the rhino js to bytecode compiler
Is it possible to include it at application level?
Id like to increase the performance ...
1
vote
1answer
60 views
Radio buttons and text box event handling
I'm making a page in JSP and am unable to determine how to do the following.
I have a bunch of radio buttons generated dynamically in a for loop
<%
for (Something something : somethings) {
...
0
votes
1answer
35 views
Passing JQuery object to Java method using DWR
I want to pass JQuery object var $this = $(this); to Java method using DWR, I'm doing something like that:
Javascript Method
function handlePieces($square) {
$square.data('jumped').remove();
...
0
votes
2answers
45 views
send request from jsp to servlet using gson
I am developing a web application using JSP, Servlets. I am using gson for sending request from jqGrid to Servlet.
Following is my code to send request to Servlet:
JSP
...
0
votes
2answers
37 views
VBA connction to Java?
I have an excel with some macros. The data is currently sourced manually. In order to automate the report, I need to source the data directly from oracle database. Unfortunately this cannot be done, ...
0
votes
1answer
32 views
Add a property to a json string with jackson json
I am storing a json string into a text field in mysql.
After the insertion, i want to update my json string and add the mysql line id into it with jackson json.
I have a java String which is in Json ...
-1
votes
0answers
26 views
Photo Editor App android using Appcelerator [closed]
Photo Editor App android using Appcelerator.
Show the images from Gallery or from Camera captured images. I done this one
Select the images from Gallery and crop that image and save it in gallery.
...
0
votes
1answer
18 views
CryptoJS AES and Java AES encrypted value mismatch
I am trying to encrypt in client and decrypt in sever using AES,
so using cryptojs to encrypt in client side with CBC mode and nopadding
in server side also using Cipher class with same mode ...
0
votes
0answers
44 views
Pass parameters from javascript liferay
Using IPC I am calling another portlet
My problem is I want to pass the value from hidden field.
But if I assign jsp scriplets
<%! public String projectid= "300015"; %>`
<portlet:param ...
0
votes
0answers
27 views
How to get rid of favicon.ico request from IE7?
I am working on a client server application,in which we open client on our pc by URL:http:\[ip of server]:[port no].
The client's GUI is divided into parts and right click is disabled on left pane.
...
0
votes
1answer
44 views
Execute a Javascript Function Upon Submitting a Spring Form
I have a JS function that I want to run (call an asynchronous JMS queue function) upon submitting.
Can someone point me to an example of how to do that from inside a Spring form? I know how to do a ...



