active questions tagged forms - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T06:48:46Zhttp://stackoverflow.com/feeds/tag/formshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1809563/django-dynamic-forms-save0Django Dynamic Forms SaveJohn2009-11-27T16:11:09Z2009-11-28T21:47:39Z
<p>I am using James Bennetts code (<a href="http://www.b-list.org/weblog/2008/nov/09/dynamic-forms/" rel="nofollow">link text</a>) to create a dynamic form. Everything is working ok but I have now come to the point where I need to save the data and have become a bit stuck. I know I can assess the data returned by the form and simply save this to the database as a string but what I'd really like to do is save what type of data it is e.g. date, integer, varchar along with the value so that when it comes to viewing the data I can do some processing on it depending on what type it is e.g. get dates greater than last week. </p>
<p>So my question is how do I access what database type the form element is based on what type of form element it is e.g. a django.forms.IntegerField has a database field type of int, django.forms.DateField would be a date field and django.forms.ChoiceField would be a varchar field? </p>
http://stackoverflow.com/questions/1813735/control-the-position-of-the-vertical-scrollbars1Control the position of the vertical scrollbarselvispt2009-11-28T20:39:54Z2009-11-28T20:57:54Z
<p>Hi.</p>
<p>I have a multi-line textbox (let's call it textBox1) that has plenty of text inside.</p>
<p>After doing a search, I highlight the string I was looking for with:</p>
<pre><code>textBox1.SelectionStart = textBox1.Text.ToLower().IndexOf(STRING);
textBox1.SelectionLength = STRING.Length;
</code></pre>
<p>Now when I call the form that contains the textbox it highlights the selected text, but what I would like to do is that the scrollbars would scroll automatically to the highlighted text.</p>
<p>I tried</p>
<pre><code>textBox1.ScrollToCaret();
</code></pre>
<p>But didn't work.</p>
<p>Any ideas?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1766671/form-wont-stay-on-top-how-do-i-keep-my-excel-form-from-hiding-behind-other-wind0Form wont stay on top. How do I keep my excel form from hiding behind other windows after I browse for file?Scott King2009-11-19T21:23:02Z2009-11-27T21:50:51Z
<p>I have a vb.net program that opens up an excel workbook and runs a macro ("Report") in that workbook when a button is clicked. </p>
<pre><code>//Workbook with macro and form
xlWorkbook = xlApp.Workbooks.Open("W:Data\Excel Program.xls")
//Macro:
xlApp.Run("Report")
//Macro opens form from workbook. I browse for my two .csv files
//and then click a button to run code that creates my reports.
//form closes, show the excel report after its created
xlApp.Visible = True
</code></pre>
<p>After I browse my first file and select it so that its location is displayed in my text box, the excel form then hides behind any open windows. I want this form to stay on top.</p>
<p>It is after this code executes that the form will hide behind all other open windows:</p>
<pre><code>Private Sub btnBrowseFile1_Click()
Dim fileName1 As String
fileName1 = Application.GetOpenFilename("CSV file (*.csv), *.csv")
If fileName1 <> "False" Then
Me.txtFileName1.text = fileName1
End If
End Sub
</code></pre>
<p>EDIT:
I still have no luck with this problem. When the excel macro is opened from a vb program I have this hiding issue...but only after browsing for a file. Why does the focus leave the form and go to Windows after browsing a file?
Any one have any suggestions?</p>
http://stackoverflow.com/questions/1810477/using-symfonys-sfform-standalone-without-the-rest-of-the-framework1using Symfony's sfForm standalone, without the rest of the frameworkmadarve2009-11-27T20:09:51Z2009-11-27T20:09:51Z
<p>I've seen some posts and questions regarding this: how can i use Symfony's sfForm as a standalone library?, just for managing a simple "hand-made" form but without the bulk of the framework.</p>
http://stackoverflow.com/questions/1807301/php-login-issue-users-cannot-login-and-users-can-use-others-passwords-to-access2Php Login Issue (Users cannot login and users can use others passwords to access their own accounts)Jeremy2009-11-27T07:50:42Z2009-11-27T19:27:22Z
<p>Ok so here is my issue, Some users cannot login to their accounts. They enter in their password and username properly but it just doesn't seem to work.</p>
<p>and secondly I noticed that a few of the users can log into any account they want with their own password and not the password of the original account.</p>
<p>using MYSQL, and PHP5. </p>
<pre><code>/*Login script*/
if (isset($_POST['Submit'])) {
$loginUserName = ($_POST['loginUserName']);
$loginUserName = stripslashes($loginUserName);
$loginUserName = strip_tags($loginUserName);
$loginPassWord = ($_POST['loginPassWord']);
$loginPassWord = stripslashes($loginPassWord);
$loginPassWord = strip_tags($loginPassWord);
$loginPassWord = md5($loginPassWord);
$loginSubmitQuery = "SELECT username,password FROM users WHERE username = '". mysql_real_escape_string($loginUserName ."' and password = '". mysql_real_escape_string($loginPassWord) ."'";
$loginResultQuery = mysql_query($loginSubmitQuery) or die ("Could not find loginUserName and/or loginPassWord");
$loginResultQuery2 = mysql_fetch_array($loginResultQuery);
if ($loginResultQuery2) {
$sql = "SELECT * FROM users WHERE username='".$loginUserName."'";
$result = mysql_query($sql)or die('_'.mysql_error());
while ($row = mysql_fetch_assoc($result)) {
$_SESSION['player']['id'] = $row['id'];
$_SESSION['player']['username'] = $row['username'];
$_SESSION['player']['gamestatus'] = $row['gamestatus'];
$_SESSION['player']['healthpoints'] = $row['healthpoints'];
$_SESSION['player']['maxhealthpoints'] = $row['maxhealthpoints'];
$_SESSION['player']['manapoints'] = $row['manapoints'];
$_SESSION['player']['maxmanapoints'] = $row['maxmanapoints'];
$_SESSION['player']['level'] = $row['characterlevel'];
$_SESSION['player']['strength'] = $row['strength'];
$_SESSION['player']['defence'] = $row['defence'];
$_SESSION['player']['monsterid'] = $row['monsterid'];
$_SESSION['player']['decivers'] = $row['decivers'];
$_SESSION['player']['experience'] = $row['experience'];
$_SESSION['player']['nextlevel'] = $row['nextlevel'];
$_SESSION['player']['inbattle'] = $row['inbattle'];
$_SESSION['player']['monsterlevel'] = $row['monsterlevel'];
$_SESSION['player']['monsterid'] = $row['monsterid'];
}
echo '<div id="loginaccess"><a href="home.php">[Success Click Here to Login]</a></div>';
} else {
echo '<div id="loginaccess">Invalid username or password.</div>';
}
}
?>
<form id="login" action="" method="POST">
<div id="uname" class="formfloat"><p><label for="loginUserName">Username:</label>
<input type="text" id="loginUserName" name="loginUserName" value="" class="formfield" tabindex="1" size="15" maxlength="20" /></div></p>
<div id="pword" class="formfloat"><p><label for="loginPassWord">Password: </label>
<input type="password" id="loginPassWord" name="loginPassWord" value="" class="formfield" tabindex="2" size="15" maxlength="20" /></div></p>
<div class="formbreak"></div><br />
<input id="loginsubmit" type="submit" value="Login" name="Submit" tabindex="3" >
</form>
</div>
</div>
<div id="sidebarRight"><!-- sidebarRight div start -->
</div>
</code></pre>
http://stackoverflow.com/questions/1808198/changing-checkboxs-parent-element-css-if-checked-or-unchecked0Changing checkbox's parent element css if checked or uncheckedRagnar2009-11-27T11:26:47Z2009-11-27T12:18:34Z
<p>Hello,</p>
<p>Basically I have a checkbox inside a td element and I want it to have one background color when the checkbox is checked and another background color when the checkbox is unchecked. So in other words I want it to highlight whether it's checked or not.</p>
<p>I tried to use the same solution as in here: <a href="http://stackoverflow.com/questions/355638/jquery-toggle-event-is-messing-with-checkbox-value">http://stackoverflow.com/questions/355638/jquery-toggle-event-is-messing-with-checkbox-value</a></p>
<p>But for some reason I can't get it working.</p>
<pre><code> $(document).ready(function(){
$("input:checkbox").change(function() {
if($(this).attr("checked") === "true") {
// CHECKED, TO WHITE
$(this).parent().css({"background" : "#ffffff", "-moz-border-radius" : "5px"});
return;
}
//NOT CHECKED, TO GREEN
$(this).parent().css({"background" : "#b4e3ac", "-moz-border-radius" : "5px"});
});
});
</code></pre>
<p>It does add the green background color but doesn't remove it. And if I leave a checkbox checked, refresh, the td is back to white and once clicking on the checkbox again, unchecking it, it changes the td's background to green.</p>
<p>I'm still new to this, have no idea what could be wrong here, been trying to figure it out for hours now. Such a simple thing but just can't get it working.</p>
http://stackoverflow.com/questions/1723454/sharepoint-user-profiles-with-forms-authentication0Sharepoint user profiles with forms authenticationfrax2009-11-12T16:20:21Z2009-11-27T09:00:03Z
<p>I've imported a bunch of users into my Active Directory with some custom fields. Then I did a profile import from Active Directory to Sharepoint with all the custom fields and regular fields. After this, I needed each user to be in a site collection with a MySite set up for them. I did that by writing some code that ensured the user existed and then checked the profile attribute "personalspace" to see if a MySite had been created. Everything worked great until some of the users needed to login from outside the network.</p>
<p>I'd like to get rid of the windows authentication pop-up that a user would get if they hit from outside the network (or haven't added the site to their trusted zone in IE). I've extended my web application to create an internet zone. Then I edited the web.config of the internet site to do active directory forms authentication, along with editing the Central Administrator's web.config so that it can see the data source. This is all well and good, the user can login through a nice interface. The only problem is that now the user is detached from their user profile. Essentially Sharepoint views a windows authentication user and a forms authenticated user as two separate users. </p>
<p>Is there a way to link the profiles? Do I have to write a custom membership provider to log a user in and then link them up to their windows account? Is there a way to log a user in from the internet web app and then spoof their windows credentials and pass it to the intranet? Do I need to recreate all the user profiles based on the forms authentication data source?</p>
http://stackoverflow.com/questions/1133253/how-do-you-mimic-the-ui-behaviors-of-youtubes-watch-action-area-using-jquery-aja0How do you mimic the UI behaviors of YouTube's watch-action-area using jQuery Ajax?Don2009-07-15T18:54:19Z2009-11-26T21:00:02Z
<p>When watching a YouTube video, a user can click "Share" or "Playlists" and a panel containing relevant FORM elements will appear below it. I would really like to find a simple jQuery example that shows how to implement a behavior very much like it -- just the UI behavior -- complete with the "close" option.</p>
http://stackoverflow.com/questions/1775532/css-grid-system-for-forms-multi-column5CSS Grid System for Forms (Multi-Column)eyze2009-11-21T13:47:27Z2009-11-26T18:32:16Z
<p>Recently I've started using CSS grid systems and I find the whole process of designing a webpage much more simpler. Now I'm trying to stylize form elements but <strong>I'm having a really hard time making forms with columns</strong>, take the following example:</p>
<ul>
<li>div (width = 400px)
<ul>
<li>form
<ul>
<li>ul
<ul>
<li>li .half
<ul>
<li>label</li>
<li>input (should be 200px wide)</li>
</ul></li>
<li>li .half
<ul>
<li>another label</li>
<li>another input (should also be 200px wide)</li>
</ul></li>
</ul></li>
</ul></li>
</ul></li>
</ul>
<p>Basically I'm applying a class that has a width attribute of 50% but putting both inputs side by side makes the row to be bigger than 100% (400px) - I guess this is because of <strong>borders, margins and paddings</strong>.</p>
<p><img src="http://i48.tinypic.com/2wmgy0n.png" alt="mockup of what I'm trying to achieve"></p>
<p><strong>Is there any CSS grid system that I can use to have multi-column forms while still making all the form elements have the same size</strong> (inputs, selects and textareas); eg. 1 input in 1 column should have 400px while 2 columns should have 200px each.</p>
<p><strong>EDIT: Wufoo <a href="https://examples.wufoo.com/forms/workshop-registration/" rel="nofollow">has</a> <a href="https://examples.wufoo.com/forms/buy-a-tshirt/" rel="nofollow">some</a> <a href="https://examples.wufoo.com/forms/mike-and-jennys-wedding-rsvp/" rel="nofollow">examples</a> of what I'm trying to do but I'm too ignorant at CSS to understand all that code and I would appreciate if someone could give me some pointers.</strong></p>
http://stackoverflow.com/questions/1801486/multi-part-form-with-ajax-in-php-codeigniter0Multi Part Form with AJAX in php/codeigniterdnyce2009-11-26T04:07:47Z2009-11-26T18:24:58Z
<p>I am trying to create a multi page listing form (using AJAX - jquery) for a real estate site. The basic premise is that a user should be able to create a listing in step 1 of the form. In step 2 of the form, the user should now be able to upload images/video. In step 3 of the form, the user would add any additional information related to the listing. The main reason for the steps is that I need to have the listing id (from the db) for association with the videos, images, and additional information. This all happens within 1 section of a page. Hence the need for AJAX. We are using uploadify for the uploads as it seems to work the best with our current system and styling. This also follows along with our AJAX premise. </p>
<p>The kicker comes in when I try to go back to step 1 and make some changes, and then return to step 2. The AJAX submit events seem to stop working up to this point. When I try to resubmit and return to the 2nd page, the ajax does not take. It's as if the events aren't being rebound? I have tried and tried but I'm up against a wall with this one. </p>
<p>Javascript:</p>
<pre><code>var options = {
target: '#form_location',
type: 'post'
};
$('#new_listing_form').ajaxForm(options);
$('#edit_new_listing_form').ajaxForm(options);
$("#form_backbutton").live('click', function(eve){
eve.preventDefault();
$(this).parent().load(baseurl + "member/create_listing/1/TRUE", {'listing_id': l_id} );
});
</code></pre>
<p>Step 1:</p>
<pre><code><form action="post_to_step2">
</form>
</code></pre>
<p>Upon submission of the above form, a listing id is generated in our db. This listing id is passed to step 2.</p>
<p>STEP 2:</p>
<pre><code><div id="step2">// UPLOADIFY Form goes here ...</div>
<div id="form_backbutton">Go Back</div>
</div>
<script type="text/javascript">
var l_id = "<?php echo $listing_id; ?>";
</script>
</code></pre>
<p>Any advice would definitely help and it would certainly help with that whole happy thanksgiving thing :-)</p>
http://stackoverflow.com/questions/1765359/css-form-layout-question1CSS form layout questionChris2009-11-19T18:09:30Z2009-11-26T13:21:28Z
<p>I have the following element on my form:</p>
<pre><code><li>
<label class="fixed" for="Interests">Program genre interests:</label>
<label for="Sports"><%=Html.CheckBox("Sports")%>Sports</label>
<label for="Comedy"><%=Html.CheckBox("Comedy")%>Comedy</label>
<label for="News"><%=Html.CheckBox("News")%>News</label>
<label for="Drama"><%=Html.CheckBox("Drama")%>Drama</label>
<label for="Reality"><%=Html.CheckBox("Reality")%>Reality</label>
<label for="Kids"><%=Html.CheckBox("Kids")%>Kids'</label>
</li>
</code></pre>
<p>The "fixed" class simply makes the label an inline block with a fixed width (to align the fields properly). The problem shows up if the check boxes are forced to wrap for whatever reason, because the second row of check boxes starts back underneath the label, rather than left aligned with the first row of check boxes.</p>
<p>I'm trying really hard to minimize the necessary markup / styling here, but I'm not sure the most efficient way to achieve the alignment I'm looking for. What I'm getting is:</p>
<pre><code>label text here: cb1, cb2, cb3, cb4
cb5, cb6, cb7, etc...
</code></pre>
<p>And what I want is</p>
<pre><code>label text here: cb1, cb2, cb3, cb4
cb5, cb6, cb7, etc...
</code></pre>
<p>What is the shortest / simplest html / css to achieve this?</p>
<p>Edit: I should note that I'm trying to avoid using floats because the rest of the page will contain some floated elements and I've had issues with nested floats before.</p>
http://stackoverflow.com/questions/1801239/visual-studio-c-form-missing-components0Visual Studio C# form missing componentsNewbie2009-11-26T02:28:02Z2009-11-26T12:23:02Z
<p>My lab partner and I are working on a school project in Visual Studio 2008 in C#. He emailed me the latest version of the project. When I open it, some, but not all, forms that I previously created are now missing all the components that were added to them. However, when I run the project, the components are there and work. Everything on the form except for the border is "hidden."</p>
<p>Any ideas how I can access the missing components and edit the forms? ShowAllForms is active.</p>
<p>It appears something similar to the code below has been added to the .cs code for each form (but not by me). I read elsewhere on the internet that this code could be auto generated by Visual Studios. Could this be the problem? If so, why is Visual Studios adding it to my code?</p>
<pre><code>private void InitializeComponent()
{
this.SuspendLayout();
//
// VideoPoker
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.ClientSize = new System.Drawing.Size(804, 549);
this.Name = "VideoPoker";
this.Load += new System.EventHandler(this.VideoPoker_Load_1);
this.ResumeLayout(false);
}
</code></pre>
<p>Thank you.</p>
http://stackoverflow.com/questions/1803237/centering-all-html-form-elements-using-css0Centering all HTML form elements using CSSyos2009-11-26T11:47:49Z2009-11-26T12:07:21Z
<p>How do you center all form label and input fields using CSS?</p>
<p>How would you do this for a form with label text (block) on top of the input field?</p>
<pre><code>#fieldset label {
display: block;
}
#fieldset input {
font-size: 0.8em;
height: 1.2em;
width: 15em;
}
</code></pre>
http://stackoverflow.com/questions/1803031/namespaces-aliases-and-visual-studio-forms-designer0Namespaces, aliases and Visual Studio Forms DesignerAgent252009-11-26T11:01:15Z2009-11-26T11:07:45Z
<p>Hi.</p>
<p>I'm having a problem with conflicting namespaces and code that gets autogenerated by the forms designer in Visual Studio 2008. I have search many forums and different documentation, but have not been able to find any solution to this problem.</p>
<p>I have one assembly called Foo.dll with the following namespace/code:</p>
<pre><code>namespace Foobar.System
{
public class MySystemClass() { }
}
</code></pre>
<p>Then, I have another assembly which contains som commonly used forms:</p>
<pre><code>namespace Foobar.MyCommonForms
{
public class MyForm : System.Windows.Forms.Form
{
public void SomeMethod()
{
var systemclass = new Foobar.System.MySystemClass();
}
}
}
</code></pre>
<p>Here, the compilers display the following error: Type or namespace 'Windows' is not part of namespace 'Foobar.System'. Obviously, the compiler tries to look for the class System.Windows.Forms.Form in namespace Foobar.System.Windows.Forms!</p>
<p>I have been able to solve this by using the alias 'x' instead of 'global' when referencing to the assembly Foo.dll, and declaring 'extern alias x' in my code files, and put 'x::' in front of every reference to types and classes in the namespace Foobar.System. The code compiles.</p>
<p>But it seems that the forms designer don't recognise this, and gives me an error when trying to display the form. This, again, can be solved by manually putting 'global::' in front of every reference to classes in System.Windows.Forms (e.g. global::System.Windows.Forms.Button), but every time chances are made to the form, the code is automaticaly re-generated, and the 'global::' part is removed.</p>
<p>So, the question is: Is there a way to make the forms designer aware of the alias 'x' that is used to reference my assembly Foo.dll, or is there another, better solution to this? Renaming the namespace Foobar.System to something else is just too much work.</p>
http://stackoverflow.com/questions/1801774/to-set-custom-error-message-in-sfvalidator0To set custom error message in sfValidator?Harish2009-11-26T05:53:26Z2009-11-26T06:15:18Z
<p>How to add a custom error message in sfValidator, the form is </p>
<pre><code>$this->setWidgets(array(
'name' =>new sfWidgetFormInput(),
'country' =>new sfWidgetFormChoice(array('choices' => CountriesPeer::getAllCountries())),
));
</code></pre>
<p>the validators</p>
<pre><code>$this->setValidators(array(
'name' =>new sfValidatorString(array('required'=>true)),
'country' =>new sfValidatorChoice(array('choices' => array_keys(CountriesPeer::getAllCountries()))),
));
</code></pre>
<p>instead of required, or invalid message i want a custom message(like 'name is required' 'please select a country').
I know that we can set custom error message while rendering the form, but can we set it in form validators??</p>
http://stackoverflow.com/questions/975426/how-to-programmatically-log-in-to-a-website-to-screenscape3How to programmatically log in to a website to screenscape?TomWij2009-06-10T13:04:19Z2009-11-25T23:16:56Z
<p>I need some information from a website that's not mine, in order to get this information I need to login to the website to gather the information, this happens through a HTML form. How can I do this authenticated screenscaping in C#?</p>
<p>Extra information: </p>
<ul>
<li>Cookie based authentication.</li>
<li>POST action needed.</li>
</ul>
http://stackoverflow.com/questions/1800253/google-analytics-can-it-collect-form-data1Google Analytics - can it collect form data?Murvinlai2009-11-25T22:02:58Z2009-11-25T22:29:48Z
<p>Simple scenario:
I have a signup form, with user name, password, email address, may be credit card number.</p>
<p>At the bottom of the page, I implement the Google Analytics code.<br>
when user clicks submit, it goes to a page wihtout google analytics.</p>
<p>question is..
can GA get the data (user naem, password..email..etc) in the first form after user input the data?</p>
<p>Do they say anything about it in their TOS or Privacy policy?</p>
http://stackoverflow.com/questions/1799255/jquery-disable-form-element-when-checkbox-is-checked0jQuery disable form element when checkbox is checkedDakota R.2009-11-25T19:06:57Z2009-11-25T19:46:26Z
<p>I have a complicated jQuery form and I want to disable several form elements if a certain checkbox is checked. I'm using jQuery 1.3.2, and all the relevant plugins. What am I doing wrong here? Thanks, Dakota</p>
<p>Here is my HTML:</p>
<pre><code> <li id="form-item-15" class="form-item">
<div class='element-container'>
<select id="house_year_built" name="house_year_built" class="form-select" >
...Bunch of options...
</select>
<input type="text" title="Original Purchase Price" id="house_purchase_price" name="house_purchase_price" class="form-text money" />
<input type="text" title="Current Home Debt" id="house_current_debt" name="house_current_debt" class="form-text money" />
</div>
<span class="element-toggle">
<input type="checkbox" id="house_toggle" />
<span>Do not own house</span>
</span>
</li>
</code></pre>
<p>Here is my jQuery:</p>
<pre><code>$('.element-toggle input').change(function () {
if ($(this).is(':checked')) $(this).parents('div.element-container').children('input,select').attr('disabled', true);
else $(this).parents('div.element-container').children('input,select').removeAttr('disabled'); });
</code></pre>
http://stackoverflow.com/questions/1798909/jquery-form-zip-code-to-state-function0jQuery form zip code to state functionDakota R.2009-11-25T18:13:16Z2009-11-25T19:27:44Z
<p>I'm trying to convert a preexisting javascript function into a jQuery function.
The function comes from <a href="http://javascript.internet.com/forms/zip-to-state.html" rel="nofollow">http://javascript.internet.com/forms/zip-to-state.html</a>
and aims to convert a user-entered zip code into a state. I'm using jQuery 1.3.2, with all the necessary plugins, but I'm not very familiar with jQuery syntax and how to convert this from plain ol' Javascript syntax.</p>
<p>The setState function takes two parameters, the zip code element and the state element, so I'm trying to do something like this:</p>
<pre><code>$('$zip_code').change( function () { setState($(this), $('#state')); });
</code></pre>
<p>Any thoughts on this syntax? Thanks, Dakota</p>
<pre><code>function getState(zip) {
if ((parseInt(zipString.substr(zip / 4, 1), 16) & Math.pow(2, zip % 4)) && (zip.length == 5))
for (var i = 0; i < stateRange.length; i += 7)
if (zip <= 1 * stateRange.substr(i, 5))
return stateRange.substr(i + 5, 2);
return null;
}
function setState(txtZip, optionBox) {
if (txtZip.value.length != 5 || isNaN(txtZip.value / 4)) {
optionBox.options[0].selected = true;
alert("Please enter a 5 digit, numeric zip code.");
return;
}
var state = getState(txtZip.value);
for (var i = 0; i < optionBox.options.length; i++)
if (optionBox.options[i].value == state)
return optionBox.options[i].selected = true;
for (var i = 0; i < optionBox.options.length; i++)
if (optionBox.options[i].value == "XX")
return optionBox.options[i].selected = true;
}
</code></pre>
http://stackoverflow.com/questions/1799251/insert-an-entry-in-the-auto-suggest-drop-down-of-the-browser0Insert an entry in the Auto Suggest Drop Down of the BrowserMike Gleason jr Couturier2009-11-25T19:05:49Z2009-11-25T19:05:49Z
<p>Hi,</p>
<p>I'm talking about the default behavior of browsers here, not div related suggests tools.</p>
<p>When you successfully submit a form, the browser stores the text you entered to suggest it to you later when you re-type something in that.</p>
<p>The problem is that when I submit an AJAX form, the text from the text boxes never have the chance to be stored in the browser for later suggestion. The text boxes never contains suggestion in other words when you type into them.</p>
<p>The browser only stores the suggestions on regular successful form post/get.</p>
<p>Apart from custom suggest box, is there a way with AJAX to use the browser's default suggest feature?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1796138/how-to-disable-a-form-element-in-symfony0How to disable a form element in symfony?Harish2009-11-25T10:51:58Z2009-11-25T19:05:38Z
<p>I am using a Select element, in form</p>
<pre><code>'country' =>new sfWidgetFormChoice(array('choices' => CountryPeer::getAllCountry())),
'city' =>new sfWidgetFormChoice(array('choices' => CityPeer::getAllCity())),
</code></pre>
<p>i want that city element to be disabled, at the first time when the page loads. and on selection of country the city element will be enabled.(it will be loaded through AJAX call)</p>
http://stackoverflow.com/questions/1796207/virtual-model-and-formfor-or-formtastic0virtual model and form_for (or formtastic)Alexey Poimtsev2009-11-25T11:05:27Z2009-11-25T18:48:11Z
<p>Hi, all.
Sometimes we need form without model creation - for example search field or email, where should be send some instructions. What is the best way to create this forms? Can i create virtual model or something like this? I'd like to use formtastic, but not form_tag.</p>
http://stackoverflow.com/questions/1797894/strange-x-y-post-values-being-sent-in-form0Strange x & y POST values being sent in formRichard Testani2009-11-25T15:55:44Z2009-11-25T16:04:57Z
<p>What are these x & y values that are being sent back with seemingly random values?
After submitting my form, I output the _POST array using print_r() to make sure my form is being submitted properly.</p>
<pre><code>Array (
[user] => Richard Testani
[pass] => sdf
[client] => Kim Ronemus Design
[api] => 3425yrt
[email] => rich@kimronemusdesign.com
[x] => 88
[y] => 34
</code></pre>
<p>)</p>
<p>I've seen this in other forms, but just ignored them.
Right now Im on a Mac platform 10.5, running PHP5</p>
<p>Thanks
Rich</p>
http://stackoverflow.com/questions/1795985/ie8-form-within-a-hidden-div-return-key-no-longer-works1IE8 - Form within a hidden div, return key no longer works.Joel2009-11-25T10:23:08Z2009-11-25T15:52:13Z
<p>I have a login form that resides within a div with display: none; I then fade in the form using jquery but the Enter/Return key no longer submits the form. If I change the display to block, it works fine. This problem is IE only.</p>
<p>Any ideas?</p>
<p>Here's an example code that doesn't work;</p>
<pre><code><div id='formdiv' style='display: none;'>
<form id='loginForm' name='createLoginForm' method='post' action='' >
<input type='text' name='username' id='username' />
<input type='password' name='password' id='password' />
<input type='submit' name='submit' id='login_submit' />
</form>
</div>
</code></pre>
<p>And I stuck this in the to test the hiding/showing;</p>
<pre><code><script type="text/javascript" src="jquery.tools.min.js"></script>
<script type='text/javascript'>
setTimeout('$("#formdiv").show()',1000);
</script>
</code></pre>
http://stackoverflow.com/questions/1492491/html-form-needs-double-click-to-focus-on-field-1HTML form needs double click to focus on fieldChrissDegrece2009-09-29T13:19:48Z2009-11-25T13:37:24Z
<p>For some reason one of my forms (I have 2 forms in the same page) is not working properly because I need to double click on each form field in order to be able to enter data.</p>
<p>Any ideas why this may be happening? </p>
http://stackoverflow.com/questions/1793797/using-rails-to-upload-things-to-s3-with-fancyupload0using rails to upload things to s3 with fancyuploadStacia2009-11-24T23:55:43Z2009-11-24T23:55:43Z
<p>Hi everyone. I've been trying to follow this tutorial to let my users upload a bunch of mp3s at once and see the progress.</p>
<p><a href="http://www.railstoolkit.com/posts/uploading-files-directly-to-amazon-s3-using-fancyupload" rel="nofollow">http://www.railstoolkit.com/posts/uploading-files-directly-to-amazon-s3-using-fancyupload</a></p>
<p>I implemented it pretty much more or lese exactly, but I removed some of the things from the policy file, so there's only <code>['starts-with', '$key', '#{key}/'],</code> instead of the other starts-with stuff which was causing it to fail when I manually put a field and submit into the form.</p>
<p>I also turned on verbose mode. This is what I get when trying to upload a file:</p>
<pre><code>Main::fireEvent "buttonEnter"Swiff.Uploader.js (line 370)
Main::fireEvent "buttonDown"Swiff.Uploader.js (line 370)
Main::fireEvent "buttonEnter"Swiff.Uploader.js (line 370)
Main::fireEvent "browse"Swiff.Uploader.js (line 370)
Main::fireEvent "buttonLeave"Swiff.Uploader.js (line 370)
Main::handleSelect Adding FilesSwiff.Uploader.js (line 370)
Main::hasFile: Checking tarzanandjane.mp3Swiff.Uploader.js (line 370)
Main::fireEvent "select": [[Object id=2 addDate=1259106078359 name=tarzanandjane.mp3 0=Object $family=Object], null, Object uploading=0 bytesLoaded=0 rate=0 size=2891446]Swiff.Uploader.js (line 370)
File[2]::start: ObjectSwiff.Uploader.js (line 370)
Main::fireEvent "fileStart": [Object id=2 addDate=1259106078359 name=tarzanandjane.mp3, Object uploading=1 bytesLoaded=0 rate=0 size=2891446]Swiff.Uploader.js (line 37
</code></pre>
<p>What actually happens is that it creates an entry with a stuck progress bar and the correct size of the file, but nothing more seems to happen. I also notice that every time I go to upload a file, I get an error in the net panel of firebug:</p>
<pre><code>ActionController::UnknownAction (No action responded to none. Actions: xxx...):
C:\Ruby\bin\mongrel_rails:19:in `load'
C:\Ruby\bin\mongrel_rails:19
-e:2:in `load'
-e:2
</code></pre>
<p>The really frustrating thing about these problems is that I'm not sure what the best way to go about debugging them is. It's hard for me to see if s3 is complaining about something and silently failing behind the scenes. I can get the URL param string (which looks fine), but that needs to be sent along with a file, so I can't just copy and paste it onto my amazonws file. I've made sure my ACL is very loose and it should pretty much let anyone write anything. As I said before when I put in the fake file field and submit button, they are uploaded to s3. The "none" action is also really annoying because I have no idea what may be causing that in my code. If I could even just get some advice about debugging things like this, that would be great.</p>
http://stackoverflow.com/questions/895171/prevent-users-from-submitting-form-by-hitting-enter1Prevent Users from submitting form by hitting enterThirster422009-05-21T21:09:25Z2009-11-24T21:54:21Z
<p>Well I have a survey on a website, and there seems to be some issues with the users hitting enter (i don't know why) and accidentally submitting the survey (form) without clicking the submit button. Is there a way to prevent this? I'm using html, php 5.2.9, and jquery, on the survey.</p>
http://stackoverflow.com/questions/1791900/text-input-field-css-styling1Text Input Field CSS StylingRussell C.2009-11-24T18:11:59Z2009-11-24T18:16:45Z
<p>I have a text input field that has some sample text in a light gray font that I'm clearing when the user clicks to type in the field. When that happens I'd like to also change the font color to black so it's easier for the user to read what they are typing. Here is what I'm using so far:</p>
<pre><code><input type="text" name="q" value="Enter keywords" onfocus="if(this.value == 'Enter keywords') {this.value = '';}" style="width:630px;font-size:14px;color:#ADADAD;border:1px solid #ADADAD;}">
</code></pre>
<p>Is this possible using CSS and if so how do I update my text field to accomplish this. Thanks in advance for your help!</p>
http://stackoverflow.com/questions/1787738/how-do-i-add-an-invisible-ajax-submit-on-my-form-triggered-by-input-field-updates1How do I add an invisible AJAX submit on my form triggered by input field updates, while also preserving the natural submit?Gene Bean2009-11-24T04:16:07Z2009-11-24T18:07:05Z
<p>Greetings kind community of wise developers !! It's my first time writing and I've looked around but alas, am stuck and need some assistance. I would be very grateful to any kind souls who can help.</p>
<p>My form needs to do 2 things :</p>
<p>1) Behave like a normal form, and submit rows of Product names, unit prices and quantities, when the Submit button is pressed (this is already in place).</p>
<p>2) Submit the rows of Product names, unit prices, and quantities <em>behind the scenes</em> (jQuery? AJAX?), triggered by any change in any of the Product rows, then use the JSON response to update some display output on the bottom of the page. The JSON response comes from the server. This "action" URL is different that that in (1).</p>
<p>I just need to know how to set up the bindings or ready function(s) or listener(s) or whatever you kids call them these days, to make this work.</p>
<p>Any help would be GREATLY appreciated and would save me from the huge black sinking pit I am struggling in right now.</p>
<p>Thank you !!</p>
<p>Cheers,</p>
<p>Gene</p>
http://stackoverflow.com/questions/1791419/adding-data-to-an-input-field0Adding Data To An Input FieldCory Dee2009-11-24T16:58:26Z2009-11-24T17:32:56Z
<p>I'm trying to add a search box to my page that will direct users to the search result page on a different site. I have the action and all of the other required data in hidden fields, to ensure it's posting correctly.</p>
<p>The problem is that they tack on extra data to the search term, making it an advanced search type of field. So instead of being searchTerm=X, it's expecting searchTerm=Locale(en):FQE=(KE,None,11)MY_SEARCH_TERM:And:LQE=(AC,None,8)fulltext$</p>
<p>How can I add that extra data around my search term, without having to hit an intermediate page to do the concatenation?</p>
<p>Here's what I have so far:</p>
<pre><code><form action="http://vendors.address/searchresult.do" method="post">
<input type="hidden" name="type" value="search">
<input type="hidden" name="sort" value="DateDescend">
<input type="text" name="queryId">
</form>
</code></pre>
<p>And I need something that can result in this type of thing:</p>
<pre><code><form action="http://vendors.address/searchresult.do" method="post">
<input type="hidden" name="type" value="search">
<input type="hidden" name="sort" value="DateDescend">
<input type="hidden" name="queryId" value="Locale%28en%2C%2C%29%3AFQE%3D%28KE%2CNone%2C11%29MY_SEARCH_TERM_HERE%3AAnd%3ALQE%3D%28AC%2CNone%2C8%29fulltext%24">
</form>
</code></pre>
<p>Any help would be appreciated.</p>