active questions tagged value - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T11:44:42Zhttp://stackoverflow.com/feeds/tag/valuehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1837311/c-get-variable-value-from-separate-form0C# Get Variable Value from Separate FormIndebi2009-12-03T02:43:55Z2009-12-03T03:54:25Z
<p>How can I get the value's of variables from a separate form?</p>
http://stackoverflow.com/questions/1832870/asp-net-mvc-how-to-get-the-value-of-the-id-field-for-the-list-of-items0ASP.net MVC how to get the value of the ID field for the list of items?Gabrile2009-12-02T13:21:03Z2009-12-02T21:44:44Z
<p>I have an application, that shows list of items bound to a typed model.</p>
<p>In the list every item has an ID from a lookup table.</p>
<p>How to show the value of the lookup data for each item instead of IDs?</p>
<p>The best way has to link a html dropdownlist to each ID, from where I would be able to choose the appropriate value.</p>
<p>Thanks in advance </p>
<p>Gabrile</p>
http://stackoverflow.com/questions/1826027/pass-a-value-from-jsp-to-classic-asp-page0pass a value from jsp to classic asp pageasf2009-12-01T12:55:16Z2009-12-01T12:56:16Z
<p>Hi,</p>
<p>I have 2 pages - 1st jsp page and 2nd asp page.Onclick of a link in jsp page, it opens the asp page. now I need to pass the selected dropdown value from jsp to asp page.</p>
<p>Thanks in advance. </p>
http://stackoverflow.com/questions/1825812/how-many-zeros-are-added-to-the-value-of-a-web-application-according-to-its-usage1How many zeros are added to the value of a web application according to its usage? [closed]burak ozdogan2009-12-01T12:13:12Z2009-12-01T12:27:29Z
<p>Let's say that I have created a web application just for fun at the beginning. In time I see that its usage has been increasing day to day. Hits are getting bigger, time spent on the site by users is increasing as well.</p>
<p>Question is, after what point one can start to consider seriously that a web application might really have a reasonable value which might be sold as a product and what arguments are used to guess its value?</p>
http://stackoverflow.com/questions/1825890/uislider-change-value-when-tapped0UISlider change value when tappedAli Awais2009-12-01T12:27:14Z2009-12-01T12:27:14Z
<p>Usually you need to hold the thumb image and move it on the slider, is there any property of UISlider or a way to move the thumb image i.e. change value when tapped on the slider</p>
http://stackoverflow.com/questions/1822598/getting-url-hash-location-and-using-it-in-jquery2Getting URL hash location, and using it in jQuery Robbie White2009-11-30T21:44:00Z2009-11-30T21:53:18Z
<p>Heya guys.</p>
<p>I'd like to get the value after a hash in the URL of the current page and then be able to apply this in a new function... eg.</p>
<p>The URL could be</p>
<pre><code>www.example.com/index.html#foo
</code></pre>
<p>And I would like to use this in conjunction with the following piece of code</p>
<pre><code> $('ul#foo:first').show();
</code></pre>
<p>I'm kinda assuming/hoping there is some way of grabbing this, and turning it into a variable that I can then use in the second piece of code.</p>
<p>Any help would be massively appreciated!</p>
<p>Cheers</p>
http://stackoverflow.com/questions/1821882/javascript-help0JavaScript HelpJoe2009-11-30T19:29:39Z2009-11-30T19:32:22Z
<p>I am completely stuck on how to finish this problem... the question goes...</p>
<p>Write a function quality Points that inputs a student’s average and returns 4 if the stu¬dent's average is 90–100, 3 if the average is 80–89, 2 if the average is 70–79, 1 if the average is 60–69 and 0 if the average is lower than 60. Incorporate the function into a script that reads a value from the user.</p>
<p>...and the code I have so far is...</p>
<pre><code><form name="myform">
<script language=javascript>
function output()
{
if (condition)
{
document.myform.txtImput
}
}
</script>
<table border="1">
<tr>
<td>Enter Grade</td><td>
<textarea name=txtImput rows="1" cols="20"></textarea>
</td><td><input name=txtOutput type=button value=Get Quality Points onClick=output()></button></td>
</tr><tr>
<td>Quality Points</td><td>
<textarea name=txtOutput rows="1" cols="20" READONLY></textarea>
</td><td></td>
</tr>
</table>
</form>
</code></pre>
<p>I can do the If..Then statements, but I cannot figure out how to change the values of the text area I have named txtOutput.</p>
http://stackoverflow.com/questions/1788704/importing-excel-data-to-xml-with-one-column-having-different-values0Importing excel data to xml with one column having different values?sling2009-11-24T08:38:36Z2009-11-30T02:56:59Z
<p>Hi,</p>
<p>I am trying to convert my data to XML using Excel. However for one of the column: lcd_size, I have multiple value for it. How do I get it to display in the following way below?</p>
http://stackoverflow.com/questions/1636758/sql-query-multiple-max-value-selection-help-needed0SQL query ...multiple max value selection. Help neededdev6462009-10-28T11:46:21Z2009-11-27T21:02:19Z
<p>Business World 1256987 monthly 10 2009-10-28</p>
<p>Business World 1256987 monthly 10 2009-09-23</p>
<p>Business World 1256987 monthly 10 2009-08-18</p>
<p>Linux 4 U 456734 monthly 25 2009-12-24</p>
<p>Linux 4 U 456734 monthly 25 2009-11-11</p>
<p>Linux 4 U 456734 monthly 25 2009-10-28</p>
<p><hr></p>
<p>I get this result with the query:</p>
<pre><code>SELECT DISTINCT ljm.journelname,ljm. subscription_id,
ljm.frequency,ljm.publisher, ljm.price, ljd.receipt_date
FROM lib_journals_master ljm,
lib_subscriptionhistory
lsh,lib_journal_details ljd
WHERE ljd.journal_id=ljm.id
ORDER BY ljm.publisher
</code></pre>
<p><hr></p>
<p>What I need is the latest date in each journal?</p>
<p>I tried this query:</p>
<pre><code>SELECT DISTINCT ljm.journelname, ljm.subscription_id,
ljm.frequency, ljm.publisher, ljm.price,ljd.receipt_date
FROM lib_journals_master ljm,
lib_subscriptionhistory lsh,
lib_journal_details ljd
WHERE ljd.journal_id=ljm.id
AND ljd.receipt_date = (
SELECT max(ljd.receipt_date)
from lib_journal_details ljd)
</code></pre>
<p><hr></p>
<p>But it gives me the maximum from the entire column. My needed result will have two dates (maximum of each magazine), but this query gives me only one?</p>
http://stackoverflow.com/questions/1807789/textbox-wrong-value0Textbox Wrong Valueunknown (google)2009-11-27T09:57:58Z2009-11-27T10:05:13Z
<p>Hello,
I have an asp.net page with a datalist with few textboxes, and a submit button.
when i cahnge the text in the textbox, and click submit, the value i get in the vb code is the old value and not the one i just entered.</p>
<p>Any idea?</p>
<p>thanks</p>
http://stackoverflow.com/questions/1718345/why-is-the-value-of-textbox-this-value-is-retrieved-from-the-sessions-using-php0why is the value of textbox (this value is retrieved from the sessions using php) in html shown in IE swathi 2009-11-11T21:57:01Z2009-11-25T00:38:21Z
<p>Okay the code is,</p>
<p>code in first.php</p>
<pre><code> <?PHP
session_start();
include("script.php");
?>
<form action="script.php" method=POST>
<input type="text" value="<?PHP if(isset($_SESSION['info']['firstname'])){echo $_SESSION['info']['firstname']; }?>" name="firstname">
</form>
</code></pre>
<p>i have saved the file in php and the "script.php" page has all the code related to intialising the sessions in php like so</p>
<p>code in script.php</p>
<pre><code><? $info=new array();
$info['firstname]=$_POST['firstname'];
$info['lastname]=$_POST['lastname'];
session_start();
$_session['info']=$info;
?>
</code></pre>
<p>now when i open "first.php" in IE, the textbox is being filled with </p>
<pre><code><?PHP if(isset($_SESSION['info']['firstname'])){echo $_SESSION['info']['firstname']; }?>"
</code></pre>
<p>why is it so.thanks in advance.</p>
http://stackoverflow.com/questions/1789706/values-of-diff-keys-to-concatenate-from-a-resource-file-how0values of diff keys to concatenate from a resource file, how?Narry2009-11-24T12:15:03Z2009-11-24T12:15:03Z
<p>I want to concatenate the values of two or more keys from a resource file, while assigning value to a control, somthing like
<%$ Resources:LocalizedText, LeadTitle%>"</p>
<p>but, getting an error.Is it possible some way to concatenate the value of different keys from a resource file?</p>
http://stackoverflow.com/questions/1786686/set-limit-for-value-iphone-1Set Limit For Value, iPhoneStumf2009-11-23T23:05:05Z2009-11-23T23:34:24Z
<p>Hello all,</p>
<p>I have the following code:</p>
<pre><code>float valueCalculated = (val1 / val2) * 100;
</code></pre>
<p>What I want to be able to do is to cap the maximum value of valueCalculated to 100.</p>
<p>I believe I could do this using some sort of if statement, but this would mean many more lines of code. Edit// This is not the case, see the answers below. </p>
<p>Thanks,</p>
<p>Stu</p>
http://stackoverflow.com/questions/1775524/how-to-get-a-jqgrid-cell-value1How to get a jqGrid cell valueraouf2009-11-21T13:44:03Z2009-11-23T15:01:41Z
<p>How to get a jqGrid cell value when in-line editing (getcell and getRowData returns the cell content and not the actuall value of the input element).</p>
http://stackoverflow.com/questions/424366/c-string-enums16C# String enums.Sem Dendoncker2009-01-08T14:15:55Z2009-11-20T20:55:36Z
<p>Hi, </p>
<p>I have the following enumerator:</p>
<pre><code>public enum AuthenticationMethod
{
FORMS = 1,
WINDOWSAUTHENTICATION = 2,
SINGLESIGNON = 3
}
</code></pre>
<p>The problem however is that I need the word "FORMS" when I ask for AuthenticationMethod.FORMS and not the id 1.</p>
<p>I have found the following solution for this problem:</p>
<p>First I need to create a custom attribute called "StringValue":</p>
<pre><code>public class StringValue : System.Attribute
{
private string _value;
public StringValue(string value)
{
_value = value;
}
public string Value
{
get { return _value; }
}
}
</code></pre>
<p>Then I can add this attribute to my enumerator:</p>
<pre><code>public enum AuthenticationMethod
{
[StringValue("FORMS")]
FORMS = 1,
[StringValue("WINDOWS")]
WINDOWSAUTHENTICATION = 2,
[StringValue("SSO")]
SINGLESIGNON = 3
}
</code></pre>
<p>And off course I need something to retrieve that StringValue:</p>
<pre><code> public static class StringEnum
{
public static string GetStringValue(Enum value)
{
string output = null;
Type type = value.GetType();
//Check first in our cached results...
//Look for our 'StringValueAttribute'
//in the field's custom attributes
FieldInfo fi = type.GetField(value.ToString());
StringValue[] attrs =
fi.GetCustomAttributes(typeof(StringValue),
false) as StringValue[];
if (attrs.Length > 0)
{
output = attrs[0].Value;
}
return output;
}
}
</code></pre>
<p>Good now I've got the tools to get a string value for an enumerator.
I can then use it like this:</p>
<pre><code>string valueOfAuthenticationMethod = StringEnum.GetStringValue(AuthenticationMethod.FORMS);
</code></pre>
<p>Owkay now all of this works like charm but I find it a whole lot of work. I was wondering if there isn't a better solution for this.
I also tried something with a dictionary and static properties but that wasn't that good either.</p>
<p>Kind Regards
Sem</p>
<p>edit:
A lot of solutions are passed on.
I'll try them all and then I'll let you guys know what will work out the best.
Thx everyone</p>
http://stackoverflow.com/questions/1771777/how-to-make-a-list-of-unique-items-from-a-column-w-repeats-in-php-sql0How to make a list of unique items from a column w/ repeats in PHP SQLSriram2009-11-20T16:53:32Z2009-11-20T19:32:01Z
<p>Say I have a table that has a column which goes</p>
<p>Column B</p>
<p>apple
apple
apple
orange
apple
orange
orange
grapes
grapes
mango
mango
orange</p>
<p>And I want to query it in such a way that I get a list like so</p>
<p>apple
orange
grapes
mango</p>
<p>How do I do this in PHP SQL? Much thanks.</p>
http://stackoverflow.com/questions/1771268/crystal-reports-how-do-i-allow-set-to-null-when-prompting-for-values-to-pass-t0Crystal Reports: How do I allow "set to null" when prompting for values to pass to subreports?metronome2009-11-20T15:33:37Z2009-11-20T15:57:07Z
<p>I have created a report which links into subreports. I created parameter fields to feed into the parameters of the subreports using subreport links. </p>
<p>If I do not add a subreport link and therefore the subreport is prompting for the value directly it will allow the set to null option. However if the enter value prompt is being generated from the parameter field I inserted then the set to null option is not displayed.</p>
<p>I have 12 subreports so I can't prompt for the same values 12 times.</p>
<p>I am using Crystal Reports XI designer and not .net</p>
<p>Tanks in advance. </p>
http://stackoverflow.com/questions/1769186/how-to-get-the-rgb-value-of-a-pixel-inside-the-form-workspace0how to get the RGB value of a pixel inside the Form workspace.Darkmage2009-11-20T08:59:06Z2009-11-20T14:03:52Z
<p>im creating a macro and need to check some pixels to make sure the mouse clicks the right spot. How wold you go about checking the RGB value of pixels in c#?</p>
http://stackoverflow.com/questions/1768494/help-me-understand-this-pointer-vs-value-issue0Help me understand this pointer vs. value issuejdc05892009-11-20T05:22:47Z2009-11-20T06:22:50Z
<p>I know this is a dumb question, but its really bugging me.</p>
<p>Take the following: </p>
<pre><code>public <TParseable> LinkedList<TParseable> readAllParseable(
Parseable<TParseable> parseable, boolean close) throws IOException
{
LinkedList<TParseable> list = new LinkedList<TParseable>();
byte[] delim = parseable.getDelimiterValue();
boolean skipNL = parseable.skipNewLines();
while(ready())
{
byte[] data = readTo(delim);
parseable.parse(data);
System.out.println(parseable);
list.add((TParseable)parseable);
}
return list;
}
</code></pre>
<p>The println statement outputs the expected <code>toString()</code> value of <code>parseable</code> each time after the call to <code>parseable.parse(data)</code>. However, the returned list has the correct number of elements, but they are all equal to the last value of parseable before the loop completed.</p>
<p>Is this because the list.add(xxx) parameter is passed by pointer rather than value?</p>
http://stackoverflow.com/questions/873954/programmatically-search-an-access-listbox-controls-items-based-off-of-a-textbox1Programmatically Search an Access Listbox control's Items Based Off of a Textbox Entry DFM2009-05-17T05:19:55Z2009-11-19T15:00:03Z
<p>I don't know if this is possible, but I am trying to code an Access textbox that will act as a search engine entry control for a database. Specifically, I wanted to add mulitple, non-visible, listboxes to a form, and have them filled with table or query data. When ever an end-user enters a search word in the textbox and presses search, I wanted to write a series of "if" statements that would specify if the entry in the textbox matched a value in one of the listboxes, to execute a custom query. For example:</p>
<p>if (Me.textbox.text = a value in the listbox) then
etc ...</p>
<p>The problem is that every example I have seen so far only searches listbox values via numerically or by index, such as listbox.selected(0). Since the textbox takes string values, as opposed to numeric values, the code must equate the textbox entry with an item in the listbox. I have been able to add a number in the search textbox and find the listbox item that way, but this is impractical since my end users will only know values. In all, I was wondering if anyone knew how to programmatically search a listbox for a specific value that equals the value entered in a textbox.</p>
<p>Thank you,</p>
<p>DFM </p>
http://stackoverflow.com/questions/1366645/struts-jsp-set-textfield-value-from-session-information1Struts JSP : set textfield value from session information nacho4d2009-09-02T09:22:10Z2009-11-17T14:00:04Z
<p>Hi,
I have a DLPUser object in my session, this DLPUser is basically a container for Strings, ints and some useful info for me.</p>
<p>(this is a fragment of code inside my action class in java)</p>
<pre><code>Map <String, Object> session = ActionContext.getContext().getSession();
session.put("logged-in","true");
session.put("user", user); //user is DLPUser user = new DLPUser();
</code></pre>
<p>Now I want to show the value of user.getName(); inside a textField in some JSP
How can I do this?
I am working with Struts tag and the following didn't work.</p>
<pre><code><s:textfield label="Name" name="name" value="<% session.user.getName(); %>"/>
</code></pre>
<p>or </p>
<pre><code><s:textfield label="Name" name="name" value="#session.user.getName"/>
</code></pre>
<p>This is supposed to be simple... but I am stuck and cannot find a good reference about this thing in struts and jsp.
Any Help is very appreciated.</p>
http://stackoverflow.com/questions/1747260/merge-similar-data-together0merge similar data togetherNana2009-11-17T07:57:38Z2009-11-17T08:42:43Z
<p>i am trying to merge similar data together but choosen data.
for example the table has 5 rows and i want 3 rows which have similar data to merge.
other 2 rows, even though it contains similar data, i dont want it to merge.
is there a way to do this?</p>
<p>here is my current code:</p>
<pre><code> protected void DataBoundModuleGV(object sender, EventArgs e)
{
for (int rowIndex = ModuleGV.Rows.Count - 2; rowIndex >= 0; rowIndex--)
{
GridViewRow gvCurrRow = ModuleGV.Rows[rowIndex];
GridViewRow gvPrevRow = ModuleGV.Rows[rowIndex + 1];
for (int cellCount = 0; cellCount < gvCurrRow.Cells.Count; cellCount++)
{
if (gvCurrRow.Cells[cellCount].Text == gvPrevRow.Cells[cellCount].Text)
{
if (gvPrevRow.Cells[cellCount].RowSpan < 2)
{
gvCurrRow.Cells[cellCount].RowSpan = 2;
}
else
{
gvCurrRow.Cells[cellCount].RowSpan = gvPrevRow.Cells[cellCount].RowSpan + 1;
}
gvPrevRow.Cells[cellCount].Visible = false;
}
}
}
}
</code></pre>
<p>E.G.</p>
<p>class: 1a<br>
studentName: nana<br>
birthday: 29 dec<br>
favouriteColour: red<br>
favouriteFood: fries</p>
<p>class: 1a
studentName: banana<br>
birthday: 29 dec<br>
favouriteColour: red<br>
favouriteFood: fries</p>
<p>class: 1a<br>
studentName: canana<br>
birthday:09 jan<br>
favouriteColour: maroon<br>
favouriteFood: fish</p>
<p>class: 2a<br>
studentName: danana<br>
birthday: 09 dec<br>
favouriteColour: maroon<br>
favouriteFood: fries</p>
<p>I want to merge class data into 1 row, so it will show only 1 row of 1a.
even though birthday the first and second data is the same, i dont want it to merge
and for favouritecolour and favouritefood, i want it to merge if have same data
but, although the favourite colour for canana and danana is the same, they shouldnt merge. is this possible?</p>
http://stackoverflow.com/questions/1743163/css-columns-shrinking-100-pixel-value0css columns shrinking 100% pixel valueJD2009-11-16T16:08:15Z2009-11-16T16:21:29Z
<p>Hi,
I have a page which is divided up into 3 divs, left center and right. I don't want to display anything in the left and right, they just frame the page.</p>
<pre><code> #leftDiv
{
background-color: Gray;
width: 10%;
left: 0px;
top: 0px;
position: absolute;
height: 100%;
}
#rightDiv
{
background-color: Gray;
height: 100%;
width: 10%;
left: 90%;
top: 0px;
position: absolute;
clear:both;
}
</code></pre>
<p>The center div has a table, which allows the user to select how many rows to see. If they chose a large value then the body of the table went beyond the bottom of the left and right div.</p>
<p>To correct this I put the following code in</p>
<pre><code>if ($("#leftDiv").length == 1) {
$("#leftDiv").height($("body").height() + "px");
}
if ($("#rightDiv").length == 1) {
$("#rightDiv").height($("body").height() + "px"); ;
}
</code></pre>
<p>this works fine until the user selects a smaller value than the page size, after selecting a larger value.
Then the left and right divs get set to less than 100%.
What i need is a way to find out what 100% is in pixels and then I can compare this to the height of the body and decide which is bigger.</p>
<p>Any ideas?</p>
<p>Thanks</p>
<p>John</p>
http://stackoverflow.com/questions/1742183/how-to-name-a-method-that-has-an-out-parameter1How to name a method that has an out parameter?burak ozdogan2009-11-16T13:24:24Z2009-11-16T13:43:00Z
<p>Hi,</p>
<p>What is the common preference to name a method that has an out parameter inside?</p>
<p>Usually I use Get as a prefix to mention that the method returns a value (like GetMyBusiness). </p>
<p>But what if there is an out parameter that will be set after the method call?
Should the method name mention this and focus only the return value? </p>
<p>thanks!</p>
http://stackoverflow.com/questions/1731043/default-values-in-xforms-input0Default Values in XForms InputJosh2009-11-13T18:33:13Z2009-11-15T18:21:52Z
<p>I have an XForm that has certain fields that may often be left blank (optional street address). Is there is technique to set a default value for that field, preferably a space (I am running into weird formatting issues with CSS). The html form way of <code>value=""</code> doesn't work, neither does setting a default value in the XML schema.</p>
<p>EXAMPLE:</p>
<pre><code><xforms:input ref="clientaddress/streetaddress2" model="model_inventory" >
<xforms:label>Street Address (Line 2)</xforms:label>
</code></pre>
<p>Leaving this field blank results in <code><streetaddress2/></code> in the resulting xml document</p>
<p><em>I want</em></p>
<pre><code><streetaddress> </streetaddress>
</code></pre>
http://stackoverflow.com/questions/1732790/changing-the-value-in-a-map-in-groovy1Changing the value in a map in GroovySimba2009-11-14T00:40:13Z2009-11-14T14:06:11Z
<p>This is about a very basic program I'm writing in Groovy.</p>
<p>I have defined a map inside a method:</p>
<pre><code> def addItem()
{
print("Enter the item name: ")
def itemName = reader.readLine()
print("Enter price : ")
def price = reader.readLine()
print("Enter barcode : ")
def barcode = reader.readLine()
data[itemName] = ['price' : price, 'barcode' : barcode]
}
</code></pre>
<p>The problem is I don't know how to update just one value inside a different method. Here's what I tried:</p>
<pre><code> def updatePrice()
{
print("Enter the item name: ")
def itemName = reader.readLine()
print("Enter new price : ")
def price = reader.readLine()
data[itemName] = ['price' : price]
}
</code></pre>
<p>This sort of works. It changes the value of price but it also changes the barcode value to 'null' presumably because it's being overwritten with...nothing.</p>
<p>Basically I need the code to change the price but leave the barcode as it is. Any ideas on how I can do this?</p>
<p>Sorry if this is a ridiculously elementary question but I'm still very much a newbie at programming.</p>
http://stackoverflow.com/questions/1719830/is-this-code-redundant-when-checking-for-a-value-greater-than-zero0Is this code redundant when checking for a value greater than zero?digidave02052009-11-12T04:12:35Z2009-11-12T04:43:33Z
<pre>if(($slcustom48 != 0) && ($slcustom48 != NULL)) {
// do something
} else {
// do something else
}</pre>
http://stackoverflow.com/questions/1708539/draggable-div-whats-the-point0Draggable div - what's the point?Ryan Michela2009-11-10T14:53:44Z2009-11-10T15:05:21Z
<p>I've seen many implementations of draggable divs in jQuery, .Net Ajax, and plain old javascript. While they are all novel, and solve the problem with varying ease, I've never understood what the point was.</p>
<p>What is the value of a draggable div? What use case does a draggable div implement?</p>
<p>Are there places where draggable divs improve the user experience, or are they the web 2.0 version of the <code><blink></code> tag?</p>
http://stackoverflow.com/questions/1698874/php-checkboxes-always-showing-checked0php checkboxes always showing checkedSoulieBaby2009-11-09T02:56:44Z2009-11-09T20:35:58Z
<p>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..</p>
<p>Here's the checkbox:</p>
<pre><code><input name="stock[]" type="checkbox" id="stock[]"> value="1" />
</code></pre>
<p>here's what it spits out regardless of whether it's checked or not.. (there are multiple "stock" checkboxes..</p>
<pre><code>[stock] => Array
(
[0] => 1
[1] => 1
[2] => 1
[3] => 1
[4] => 1
[5] => 1
)
</code></pre>
<p>I can't seem to get it working.. :S Any ideas? :)</p>
http://stackoverflow.com/questions/1699545/unable-to-get-value-from-textbox-used-inside-a-facebox0unable to get value from textbox used inside a faceboxharisri7862009-11-09T07:15:59Z2009-11-09T10:52:29Z
<p>Hi, </p>
<p>I am using the following code:</p>
<p></p>
<pre><code><div class="example">
<p> <a href="#info" rel="facebox">View Facebox</a> </p>
<p> <input id="Button1" type="button" value="button" onclick="Get_Value();"/></p>
</div>
<div id="info" style="display:none;">
<p><input id="text1" name="text1" type="text" value="abc"/></p>
<p> <input id="Button2" type="button" value="button" onclick="Get_Value();$.facebox.close(); return;"/> </p>
</code></pre>
<p></p>
<pre><code><script type="text/javascript">
function Get_Value()
{
alert($('#text1').val());
var myTextField = document.getElementById('text1');
alert("You entered: " + myTextField.value)
}
</script>
</code></pre>
<p>The problem is that, in my alert statements, I am always getting the initial value 'abc' for the textbox text1; but not any value that is entered by the user when it is opened inside a facebox. Can anybody please help me out?</p>