Tagged Questions
0
votes
2answers
48 views
Validate form in Javascript
i got a problem with my Order form. I need to validate some of the fields, checkboxs, dropdown list, and the quantity of the products. So i just started with the checkbox.
It have to looks like: If i ...
0
votes
2answers
16 views
Modify action method value dynamically in JSF
I have a button which has to perform/call any of the two separate backing bean action method onclick. I have a parameter available in my form.
Is it possible to modify the action="" value on the fly ...
0
votes
2answers
77 views
javascript jQuery stops?
I have some Jquery (mobile) actions on the .ready() function in order to initialize the html elements with the correct values (passed as $def var):
If I comment this actions (see the end of the ...
0
votes
1answer
28 views
Task/Action-api for JavaScript?
Is there any existing api/code for handling and chaining long-running "async" javascript functions?
First of all I don't think there are any such thing as an asynch function in js right? I guess the ...
2
votes
2answers
91 views
HTML form action and onsubmit issues
I am wanting to run javascript user validation on some textbox entries.
The problem I'm having is that my form has the action of going to a new page within our site, and the onsubmit attribute never ...
0
votes
1answer
180 views
Struts 1 action not getting called within javascript function in jsp
I am using the display tag to display my list onto a table. I am trying to have a button to delete a row based on the row id. The id is getting passed to my javascript function but the action is not ...
0
votes
0answers
50 views
javascript action is empty?
I'm a system administrator but have to resolve the following issue with.
I have a web page (HTML+javascript). Also it have a from. As far as I know in the classic HTML each form must have action tag ...
0
votes
0answers
38 views
window.location after previous commands in javascript
I have a function:
function OnButton1()
{
document.Form1.action = "http://apple.com" // First target
document.Form1.target = "iframe1"; // Open in a iframe
document.Form1.submit(); ...
1
vote
1answer
75 views
How to do an action when unchecking a checkbox?
Well basically I have 3 check boxes. Each of them has a boolean which gets turned to true when a button is clicked and the box is checked.
However is it possible to do an action, when unchecking a ...
0
votes
0answers
75 views
WordPress: template_redirect doesn't work if <?php wp_footer(); ?> is in theme
In the moment I'm facing some strange behaviour when I try including javascript via wp_enqueue_script.
Ok ...
Since ages I include javascript like this:
function my_scripts_init(){
...
0
votes
2answers
458 views
Retrieving a java object(arraylist/hashmap) from struts 1.xx action via ajax
I have a requirement (Java EE application based on struts 1.xx) in which I have to fetch a Java object from a Struts action class via AJAX in order to display on the UI and render it in the form of a ...
0
votes
0answers
150 views
proper way to call a struts2 action along with setting variable values
I have a struts.xml like
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" ...
0
votes
0answers
102 views
fb:explicitly_shared in batch request to publish action on Facebook with Javascript API
How can i specify the fb:explicitly_shared=true parameter in a batch request to publish several custom actions in Facebook with javascript api?
I have the following code for a batch request using ...
-2
votes
2answers
116 views
How to animate a div in javascript? [closed]
I have this code:
<html>
<head>
<script>
function funct() {
if (event.keyCode == 37) {
move ttd div 10 px to right
...
0
votes
2answers
145 views
change form action on buttton click [duplicate]
Possible Duplicate:
How can I invoke multiple actions from a single form?
i have two buttons in a form. The one is for calculate, the other for send the calculated data in an email.
So ...
1
vote
3answers
602 views
One form, One submission button, but TWO actions
I have a form that collects client's info and then it
saves them in the database
sends out few emails
sends the info to SalesForce (SF) department
Now, the first 2 two task was easy, but the ...
0
votes
0answers
71 views
Action links with Javascript not working with IE7
I am working on a newsletter where each article is contained in its own jquery expander box. After much coding and retooling I am finally able to link to each article externally and get its box to ...
0
votes
1answer
126 views
FB swipe action failing
related to the
wrapper function bracketing
question
Rion and Jan were good enough to make that script work, but it only works for awhile (and is quite unrelated to the added line) so it seem the ...
0
votes
0answers
72 views
Using Facebook FQL to retrieve custom action data with JS API
I am trying to use Facebook FQL via the Javascript API to return data about custom open graph actions, specifically if the current user (me()) has performed the action or not on a specific object ...
1
vote
1answer
499 views
Make jquery ajax calls to ASP.NET MVC action
I have a simple Edit action in ASP.NET MVC that looks like this :
[HttpPost]
public ActionResult Edit(EditPostViewModel data)
{
}
I am trying to make a post to this action like this :
function ...
0
votes
3answers
173 views
$(document).ready listeners not running on dynamic content
I have a $(document).ready function that sets up listeners for certain elements. However, all of the #leave-ride elements are added dynamically.
Listeners:
$(document).ready(function() {
...
0
votes
2answers
169 views
Run Javascript on button click and execution of controller path
I have the following code
@using (Html.BeginForm("ConfirmBid", "Lot"))
{
...
<input name="button" value="Place bid" type="submit" class="btn btn-size2" />
...
}
I want to run some ...
1
vote
3answers
110 views
use javascript to access form element on different page
Is it possible to get a form elements value using javascript if the action goes to a different page?
Here are snippets of code to illustrate what I'm trying to do:
index.html:
<form name="testMe" ...
0
votes
2answers
340 views
How to include and pass a Javascript value to the next page?
Hello everyone I'm here today because Ive been trying really hard to understand and after many many hours of trying to learn and getting nowhere Ive decided to just create this post.
Thanks in advance ...
0
votes
3answers
231 views
how to perform multiple action in html form using php?
$i=0;
echo '<html><body>';
echo '<form name="Form1" enctype="multipart/form-data" action="'."https://xxx/".$uid[$i]."/send".'" method="POST">';
echo '<input name="message" ...
0
votes
1answer
345 views
MVC 3 Page navigation and passing parameters with javascript
i have my main page and also two partial views. One partial view is a menu and the other is a telerik grid.
What i want to achieve is selecting a row in the grid and when i click a button in the menu ...
-3
votes
1answer
338 views
javascript checkbox select all, unselect all, invert selection
I meet a problem with a script i'm doing. actually I gave something like that because I'm doing a mail box for my intranet.
<script type="text/javascript">
function GereChkbox(conteneur, ...
2
votes
1answer
638 views
Open android application from a web page
I know that for opening android application from a link inside a web page we have to write the following in the AndroidManifest.xml:
<intent-filter>
<action ...
0
votes
0answers
165 views
ExtJS controller actions
I would like to execute Controller code when a Tab is close.
For that I used Controller action with a ControlQuery.
The query seems to be right but the action never fired...
Here is my fiddle: ...
1
vote
2answers
120 views
Rails - id not getting passed from dropdown to link
What I'm trying to achieve is to have a list of projects in a dropdown menu, so that when one is selected from that dropdown, only tasks etc relevant to that project are shown on other pages. I got it ...
1
vote
2answers
543 views
<select> onchange selection without changing
I'm trying to use a select with an onChange event and I just need to show 2 possible selections, and the first one is selected by default.
The problems comes when you hit the submit button without ...
0
votes
0answers
135 views
Form action value is not altered by javascript
I've got a code which should change the link of form action depending which value is selected from the dropdown menu but it doesn't. For guys/girls experienced in javascript this won't be challenge, ...
1
vote
1answer
984 views
Unable to set form action via javascript (error:object doesn't support this property or method)
Here is the code. 'patient' is the form name.
function settarget(page) {
document.getElementById('patient').action = page;
}
the exact error message from ie is:SCRIPT438: Object doesn't support ...
1
vote
1answer
392 views
change form action target without javascript
hmmm..I have a form with select box. With javascript on, I take the change vent to define the options-values as location.hrefs:
$('select').change(function(){
window.location.href = ...
0
votes
3answers
64 views
Best way to distinguish links for internal action and ajax request?
Because this topic turn out to interdisciplinary (but still is about user experience) I'm curiuos what think about this an javacript developers.
My site handling a tags with href starting with # as ...
0
votes
0answers
83 views
bookmarklet Click all hearts on website (javascript) [closed]
I cannot find the correct element name for the "heart" that i would like to click via a javascript bookmark listed on http://ink361.com/#/tag/
when viewing page the elements are listed as 'likes' ...
1
vote
1answer
818 views
Using form submit handler in jQueryMobile for validation, but preventing sending
I'm building an app in jQueryMobile and PhoneGap. I have an approach to validate forms that works nicely while testing in Chrome and on my Nexus S Android phone, but that I'm not sure will work on all ...
0
votes
1answer
56 views
Not getting an action change dynamically
I have the following code
alert("Submit the form");
document.form[0].action = "contact_form3.asp?proc=true";
alert("action changed?");
document.form[0].submit();
For the life of me I cannot get it ...
0
votes
1answer
323 views
Facebook Open Graph Pre-Action Authentication
Basically, I've just started some development on getting a Facebook Open Graph action for our website. Now I have successfully implemented the Facebook Action and Objects but am getting a bit stuck ...
-2
votes
3answers
211 views
How to click on an image with a hyperlink using Javascript?
The HTML of the page I wish to use for this is as follows:
<A HREF= "http://www.example.com"
TARGET="_new" status="Home Directory" title="Home Directory"
urn="Home Directory" ...
1
vote
2answers
2k views
Can we redirect a page to new window with submit button
Hi i have a form on my page, in asp.net, my form is hidden, it open in lightbox on click of a link on the page.
lightbox has a div with HTML form POST method and action to some URL, on click of ...
0
votes
0answers
391 views
Struts - Not getting the value of hidden field set in JS in action class - in IE8
Getting an strange issue in my web app.
I am using Ext-JS and JSON as a communication language.
In my app, I am setting one hidden field named tmpJSON using Javascript.
In that JSON simply I am ...
1
vote
2answers
486 views
Cannot access the value of the selected item of a disabled drop down, in action class (struts 2)
On a Jsp page I have some select elements which were disabled after a value was selected (Disabled them in javascript). Now when the form is submitted, I can not access those selected values in the ...
0
votes
1answer
5k views
Get row Id from a display tag table on a jsp, into a struts 2 action class
I am using display tag to display data in a table on a JSP. Now I want to give two links for each row, one for editing & one for deleting the row.
There are some posts on stackoverflow regarding ...
0
votes
2answers
395 views
When submitting multiple values, execute() method doesn't run
I need to submit some values as request params(through javascript) which I need to use in my Action class. I was able to post some data before this way and reteieve in the Action class. But now it ...
0
votes
1answer
373 views
Designing a complex structure in jsp page and communicating values on it with action class
This question can have different answers because everyone would do it his own way. But I guess a good discussion could help me find mine.
First I will explain the scenario that I am trying to ...
0
votes
1answer
339 views
Android Menu/Sub-Menu - Menu 'Title" needs to perform NO ACTIVITY… currently refreshes webview
I am trying to use the Sub-Menu feature of the Android Action Bar, because I can't figure out the Spinner menus just yet. Basically, what I want, is to have my current webview activity open a new URL ...
0
votes
2answers
253 views
Action is triggered thrice on a single event
This is kind of simple (I know) but yet I cant figure it out.
What is happening:
I have a jsp on which a button triggers an action (which deletes a particular record in db). But what I have observed ...
0
votes
1answer
458 views
Calling action from view JavaScript in mvc3
View JavaScript:
$(document).ready(function() {
$("input#autocomplete").autocomplete({
source: ["c++", "java", "php", "coldfusion", "javascript", "asp", "ruby"]
});
});
I want to call ...
0
votes
1answer
813 views
Graph API Query Using JavaScript API For Open Graph Actions And Objects
when I use "me/nativeamericannews:be_proud_of/story?" in the Graph API Explorer, it correctly gives me a JSON response, but when I try to get that same response from my canvas app, it always provides ...

