Tagged Questions
JavaScript is a dynamically-typed language commonly used for client-side scripting, but (despite the name) is NOT related to Java. Use this tag for questions regarding ECMAScript and its dialects/implementations (excluding ActionScript). A pure JavaScript answer is usually expected, except if a tag ...
0
votes
0answers
4 views
Implementing bootstrap Model
i have a php page that displaying a table from my Data base i like to use a delete button.
like this :http://i.stack.imgur.com/laZZP.png
this button must display a confirmation window (yes/no) for ...
0
votes
1answer
10 views
Color animation in javascript
I got an array of div class in javascript:
var arr=new Array(3);
arr[0] = $('.one');
arr[1] = $('.two');
arr[2] = $('.three');
And an array of colors:
var colors = ['#ff0000', ...
0
votes
0answers
7 views
How to parse json using sapui5
I am currently parsing json and displaying the data in a table control using sapui5,but i am unable to parse inner objects values
CODE:
<!DOCTYPE html>
<html><head>
<meta ...
0
votes
0answers
3 views
jqgrid dropdowns pass value of another column
I am using jqGrid to show data in tabular format, using JSP and Servlet.
I have two dependent drop-downs to show.
Show State
Show City
Following is relevant code:
colNames:['User ID', ...
0
votes
0answers
16 views
stop previous event when next one on the same is fired
searchBox.live('input', function(){
//search in a json object
//update the dom based mathes
});
How do i stop the previous search when a new input is entered in the searchbox
0
votes
2answers
10 views
how to open form in same window of mvc3 view?
by using the following code,i can able to open it in new window.but i want to open in same window
@Html.ActionLink( "Edit", "Edit", new { id=item.studentID },new {target="_blank"})
0
votes
3answers
15 views
Difference between including javascript file directly in the main php page, or in a php subpage included in the main php page?
What is the difference between following two ways of including a javascript file:
1. Including javascript file directly in the main php page, as:
In main.php : <script type="text/javascript" ...
0
votes
0answers
3 views
Draw custom bars in a Highcharts bar chart
I'd like to draw custom bars with rounded corners to get lozenge shaped bars. How can I override or access the rendering code for bars?
2
votes
0answers
16 views
Windows Phone 8: Open Link in new Tab
I try to achieve this in several ways, none of them work:
<a href="url" target="_blank"/>
<a href="javascript:void(0)" onclick="window.open(url)"/>
<a href="javascript:void(0)" ...
0
votes
1answer
7 views
handling number format and precision exceptions in jsp
the following is the code for adding a new fund wher min_holdings and nav are int values wheres all other are varchar and text fields.. While entering those fields i wanna make sure that correct ...
-1
votes
2answers
40 views
How to change color and background of whole web site
It is required to change colors and backgrounds of whole existing shopping cart web site so that all backgrounds are blue and all texts are black.
If mouse is over anchor element, background should ...
0
votes
1answer
16 views
Text fields don't get updated using the browser back button
I have been looking for information about this but I don't get with the solution.
I have some text fields on a page which I get updated on blur making use of jQuery events.
There's no form to submit, ...
2
votes
3answers
40 views
e.stopPropagation() is not working as expected?
I have a simple table :
The TR has <tr onclick='alert("row");'>
And the button has :
$("body").on('click',".b",function (e){
alert('button');
e.stopPropagation();
});
However - ...
0
votes
1answer
21 views
Does “Detach Elements to Work with Them” improve performance always?
I learned from Jquery performance guide(http://learn.jquery.com/performance/detach-elements-before-work-with-them/) that detaching element when working with them improve performance. But I want to ...
0
votes
0answers
3 views
Get only the windows logged in user name via Servlet without AD authentication
Is there a way to get only the client's windows logged-in username without using authentication against AD server?
(Without using SPNEGO, JCIFS or something)
I tried a Javascript which uses ActiveX, ...