0
votes
2answers
31 views
How to add an increment(1) to the value of an element with JQuery
<span id="shortfall" style="color:black">$row[shortfall]</span>
How to increase $row[shortfall] to $row[shortfall]+1 with JQuery?
0
votes
6answers
60 views
PHP array problem
I have an array like this. What i want is to get the value of the index for specific values. ie, i want to know the index of the value "UD" etc.
Array
(
[0] => LN
[1] = …
0
votes
3answers
39 views
Sort array by value alphabetically php.
As the title suggests i want to sort an array by value alphabetically in php.
$arr = array(
'k' => 'pig',
'e' => 'dog'
)
would become
$arr = array(
'e' => …
4
votes
5answers
187 views
Best practice in python for return value on error vs. success.
Hi,
In general, let's say you have a method like the below.
def intersect_two_lists(self, list1, list2):
if not list1:
self.trap_error("union_two_lists: list1 must n …
0
votes
5answers
37 views
sql query …multiple max value selection . help needed
Business World 1256987 monthly 10 2009-10-28
Business World 1256987 monthly 10 2009-09-23
Business World 1256987 monthly 10 2009-08-18
Linux 4 U 456734 monthly 25 …
1
vote
2answers
42 views
WPF: TextBox Text is not updating.
I have a user control that i am using inside a Data Template, this user control contains a TextBox which is binded with Value property(declared as a Dependency Property) of my user …
-1
votes
1answer
69 views
Javascript to set hidden form value on drop down change - options not populating from Javascript array
I have some Javascript code that creates 2 arrays: One for Product Category and one for Product.
But before the user can choose the Product Category or Product, they have to ch …
0
votes
4answers
54 views
Set the actual value attribute of an input with jQuery
I am trying to reset the actual value attribute of an input so that it can be reset back to that value if reset, not necessarily the original value when the form was loaded. The p …
2
votes
5answers
120 views
Value vs Reference
What decision should I take about Equals(), ReferenceEquals(), and == from the following results? What do they produce actually?
#region
int integer = 1;
int integer2 = integer;
…
0
votes
2answers
59 views
how to have quotation marks in html input values
hi
i have following problem - from the server side i get a string like 'hoschi"brother'
i want to put this string into a <input value"MYSTRING" />. this results in somethin …
0
votes
0answers
16 views
How can I bind dynamic resource key value with column value in data table in wpf
Hello,
I am developing a user control in wpf where I need to set eclipse background color as per value in database. Now that field contains values between 1 to 6.
now I want that …
0
votes
3answers
89 views
How do I get the value of a textfield without posting the form
Is there anyway I can get the value of a text field without posting a form.
I would like to use the value somewhere else in the same page.
1
vote
4answers
84 views
Java swap two keys in a Map
Welcome.
I have a generic void method swap that takes a Map and 2 keys. The method will swap the values associated with the keys in the Map. I already checked that both keys are co …
2
votes
3answers
73 views
Jquery access to selectbox text not value how ?
example:
<select>
<option value='1'>hello me<option>
<option value='2'>hello world</option>
</select>
how can I access a TEXT not VALUE from …
0
votes
5answers
128 views
Determine whether a checkbox is checked upon form submission
Hi, i have been looking for this script for a while now. I have some rules and then i have a checkbox to click if you agree the terms and rules.
Now how do i make a check in PHP i …
