0
votes
1answer
99 views

In AJAX, variable value is not updated

Below is my jquery stuff, it works correct to call REST Service and response result return back to AJAX Success event. But, every time when it executes then it does not update the variable ...
0
votes
2answers
120 views

Dynamically Add New form fields pre-populated with user's input from another form using jquery?

Ok here's what I need to do--- Need to create a form - with two inputs: item and quantity The user will input... There will be an add button like below. <form id="form1"> <input ...
1
vote
2answers
47 views

How to combine two form fields and submit as one field with jquery?

Ok Here's my problem. I made a form where you can enter multiple items and quantities - You can add additional form fields if you need to add more items. The form can be accessed at : ...
0
votes
1answer
59 views

Trouble getting jQuery to talk with velocity

I have this input that is in a velocity file <input name="$name_GradePoints" id="$name_GradePoints" value="$!value_GradePoints" type="text" size="5" maxlength="11"/> and I am trying to get it ...
0
votes
1answer
94 views

Change event on a dynamically loaded option list is not called

I would like to load dynamically (using a velocity object) a select drop down list, and then associate the change event with it; to do it I wrote so: $(function() { var tableList = ...
0
votes
0answers
243 views

Datepicker not changing value

I am trying to change the value of a datepicker value, but everytime I select it on the calendar it does not change the value, but stays the same original value. How can I fix this? Here is my code ...
0
votes
4answers
644 views

How to automatically sum input value boxes in an HTML table that share the same name?

I have an HTML table with columns of input boxes, and would like the sum of the values in the boxes to be displayed automatically (i.e. without clicking a sum button and updates as the values in the ...
3
votes
4answers
815 views

Access velocity variable with javascript

<head> #set($test = "works")) </head> <script> var get = "${test}"; // I also tried using '$test' and "$test" also alert(get); </script> And it alerts out ...
2
votes
1answer
339 views

Using Jquery in JIRA and Velocity

Having a wierd problem in JIRA at the moment. When Im on the Edit Issue page, If I have this line of code in my velocity template file (edit.vm): <script type="text/javascript" ...
1
vote
1answer
1k views

AJAX call from Velocity template

I have a test webpage which uses jQuery and AJAX to call an ASMX webservice and returns a list of customers in JSON format. The returned data then populates an autocomplete list for an tag. In the ...
1
vote
0answers
147 views

Retrofitting jqGrid to a Velocity template under Tomcat?

I am new to JQuery and jqGrid. I have been successful in getting them to work well with a new ASP.Net MVC3 application I am creating. However, I wanted to retrofit jqGrid to a Tomcat/Java ...
2
votes
2answers
2k views

Velocity - How to avoid ParseErrorException when using jQuery?

I'm trying to add a jQuery post to some JavaScript on a web page. The entire page is built up of several Velocity templates. Everything has been fine until I've tried to add the jQuery post, now I ...
0
votes
2answers
185 views

Is it possible to have an “S-shaped” animation velocity curve in JQuery?

On the Apple iPhone, the slide animation velocities follow an S-shaped curve where it starts off slow, accelerates and then slows down at the end. See this article to see a visualization of what I ...
2
votes
7answers
2k views

Velocity (VM) template: how to disable for a block of jquery

I have Apache Velocity. I have some jQuery code. I think VM doesn't like when I do things like $img.css("float","left"). How can I completely disable VM parsing within a block of HTML/Javascript ? ...
0
votes
2answers
308 views

Append # at the beggining of a string generated by a velocity macro

Does anybody know how to get a velocity macro to run when it's prepended by an Octothorpe? I have a velocity macro called #macro(getUniqueID $id) And I want to use it to spit out an id to be used ...