value

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 select box so I can display HELLO ME or HELLO WORLD instead of 1 & 2. ...

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. ...

Hibernate Immutable Value Object

customer = // get customer from the current hibernate session // customer has a discount with database id of 1 Everything is fine until here. But if I call: discount = SpecialDiscount.create("10%"); customer.setDiscountTo(discount); session.save(customer); // customer has a discount with database id of 2 now How hibernate can updat...

Initialize custom class according to user selection

Hi, I have a navigation based application with two levels, in the second level the user select an option which should cause initialization and loading of the proper Nib file (there is a Nib file for every available selection). Now I'm doing the initialization in a switch, based on the user selection. The problem is that I'm adding Nibs...

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 contained in the Map somewhere else, but in this method, I can't use looping. My method answer: public static<K, W> swap(Map<K,V m, K key1, K key2>){ m.put(ke...

how to get cell value in iphone?

Hi, In my iphone application i have 4 cell in uiTable,and each cell having Integers values(10,12,13,14).How to retrieve the integer value while i click on each cell? And how to put if condition to check whether the value of the cell is same or not? i.e.(if(cell value==condition){ } Please provide any code snippet or other solution. T...

compare value property

how can I compare value property of item to datatable column called Value? Please help me with the syntax if ((String)item.Value.IndexOf((string)results("value") Stringcomparison.CurrentCultureIgnoreCase) > -1) { returnItems.Add(item); } ...

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; bool referenceEquality = (integer == integer2);//true bool valueEquality = integer.Equals(integer2);//true bool valueEqualityMore = object.Equals(integer, inte...

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 something like <input value"hoschi" brother" /> which obviously does not work. any workarounds for this? does escaping the " character with &quot; work within the value ta...

UploadRequest.Item method doesnt work into textareas using TinyMCE

Hi, that's all in the title. I've got a Curriculum Vitae form which has a textarea using TinyMCE and a file upload input, and the script is in classic ASP. <script language="javascript" type="text/javascript"> tinyMCE.init({ mode : "textareas", theme : "simple" }); </script> <textarea name="messaggio" id="messaggio"></text...

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 choose the type of Campaign they wish to use. Thus, the selection (event) of the 'Campaign', triggers the hidden drop-down menu from which to choose the Product...

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 not be empty.") return False if not list2: self.trap_error("union_two_lists: list2 must not be empty.") return False #http://byt...

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 problem is these changes don't seem to take effect. I have tried both: $(this).attr('value', $(this).val()); as well as.... $(this).val($(this).val()); Neit...

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 2009-12-24 Linux 4 U 456734 monthly 25 2009-11-11 Linux 4 U 456734 monthly 25 2009-10-28 I get this result with the query: ...

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' => 'dog', 'k' => 'pig' ) Any ideas? EDIT: Here's the actual array i want to sort. Array ( [0] => Newtown [1] => Montgomery [2] => Welshpool [6] => Llanfyllin [7] =...

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] => TYP [2] => UD [3] => LAG [4] => LO ) how can i do that?? ...

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? ...

How to get unselected checkbox?

Hello! I have three checkboxes like ch[0], ch[1] and ch[3] (sometimes i have more, or less, it's dinamic) and in PHP i want to get the unselected items also, like this: 0=yes,1=no,3=yes and so on. Can I solve this somehow? ...

jQuery accordion open from href link

My page gets a value from a url passed to it. accordId gets a value of 4. I need to make the accordion open to a certain panel based on the fact that the value for accordId is 4. So I want panel 4 to open based on the accordId of 4 that was passed from the url. ...

php checkboxes always showing checked

Hi all, I've got a single checkbox which i'd like the unchecked value to be 0 and the checked value to be 1, but when the post goes through, it always shows as 1 whether the box is checked or not.. Here's the checkbox: <input name="stock[]" type="checkbox" id="stock[]"> value="1" /> here's what it spits out regardless of whether it's...