active questions tagged form - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T12:00:08Zhttp://stackoverflow.com/feeds/tag/formhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1824673/html-spanning-a-form-across-multiple-td-columns1HTML: Spanning a form across multiple td columnsBen2009-12-01T08:05:08Z2009-12-01T09:24:16Z
<p>I'd like to be able to do something like this in HTML. It isn't valid HTML, but the intent is there:</p>
<pre><code><table>
<tr>
<th>Name</th>
<th>Favorite Color</th>
<th>&nbsp;</th>
<th>&nbsp;</th>
</tr>
<tr>
<form action="/updatePerson" method="post">
<input name="person_uuid" value="550e8400-e29b-41d4-a716-446655440000"/>
<td><input name="name" value="John"/></td>
<td><input name="favorite_color" value="Green"/></td>
<td><input type="submit" value="Edit Person"/></td>
</form>
<td>
<form action="deletePerson" method="post">
<input name="person_uuid" value="550e8400-e29b-41d4-a716-446655440000"/>
<input type="submit" value="Delete Person"/>
</form>
</td>
</tr>
<tr>
<form action="/updatePerson" method="post">
<input name="person_uuid" value="f47ac10b-58cc-4372-a567-0e02b2c3d479"/>
<td><input name="name" value="Sally"/></td>
<td><input name="favorite_color" value="Blue"/></td>
<td><input type="submit" value="Edit Person"/></td>
</form>
<td>
<form action="deletePerson" method="post">
<input name="person_uuid" value="f47ac10b-58cc-4372-a567-0e02b2c3d479"/>
<input type="submit" value="Delete Person"/>
</form>
</td>
</tr>
</table>
</code></pre>
<p>Obviously, I can't do this because I must not have a form tag immediately inside of of a <code><tr></code> element. The only alternatives I can see are to use nasty javascript or to change the behavior of my program.</p>
<p>What might be a solution that would allow me to have a form that spans multiple columns like this?</p>
http://stackoverflow.com/questions/110378/change-the-width-of-form-elements-created-with-modelform-in-django2Change the width of form elements created with ModelForm in Djangojoshhunt2008-09-21T06:15:13Z2009-12-01T07:28:48Z
<p>How can i change the width of a textarea form element if i used ModelForm to create it?</p>
<p>Here is my product class:</p>
<pre><code>class ProductForm(ModelForm):
long_desc = forms.CharField(widget=forms.Textarea)
short_desc = forms.CharField(widget=forms.Textarea)
class Meta:
model = Product
</code></pre>
<p>And the template code...</p>
<pre><code>{% for f in form %}
{{ f.name }}:{{ f }}
{% endfor %}
</code></pre>
<p><code>f</code> is the actual form element...</p>
http://stackoverflow.com/questions/1824144/multiple-forms-vs-1-all-encompassing-form2Multiple Forms vs 1 All-Encompassing Form?justinl2009-12-01T05:21:31Z2009-12-01T05:29:16Z
<p>I'm writing a YouTube Reply/Comment type wall on my website. This allows users to either post a new comment to the wall, or reply to any existing comment on the wall.</p>
<p>Is it recommended to create a separate form for each reply comment box? Or is it better to just create 1 form on the page that contains all of the input/submit elements, and then just use code to figure out which part of the form the user is submitting?</p>
<p>This question really isn't about this particular application, but just general coding best practices. Thanks!</p>
<p>ps - I will be using jQuery/Ajax</p>
http://stackoverflow.com/questions/1822620/c-waitcursor-while-form-loads1C# WaitCursor while form loadsKrugar2009-11-30T21:47:24Z2009-12-01T00:09:17Z
<p>Hello all,</p>
<p>I'm having a form that takes a few seconds to finally display. This form is called through:</p>
<pre><code>using (ResultsForm frm = new ResultsForm())
{
this.Visible = false;
frm.ShowDialog();
this.Visible = true;
}
</code></pre>
<p>It's useful that I get the default cursor to <code>Cursors.WaitCursor</code> while waiting for the form to finally display. Currently I can only seem to be able to do this successfully by using the static 'Current' property:</p>
<pre><code>using (ResultsForm frm = new ResultsForm())
{
//this.Visible = false;
Cursor.Current = Cursors.WaitCursor;
frm.ShowDialog();
//this.Visible = true;
}
</code></pre>
<p>But this has two problems:</p>
<ul>
<li>It forces me to disable the MainForm hiding feature which I would like to retain.</li>
<li>It increases coupling since <code>Cursor.Current = Cursor.Default;</code> needs to be called within the ResultsForm Shown event.</li>
</ul>
<p>How can I change the Cursor while the form loads without changing the first code snippet and while avoiding coupling?</p>
<p><strong>UPDATE:</strong>
Now the question was answered, video presentation was removed so I don't go over my ISP bandwidth limitations.</p>
http://stackoverflow.com/questions/1789901/jquery-get-all-input-values-and-create-an-array-with-names0Jquery get all input values and create an array (with names)dotty2009-11-24T12:55:38Z2009-11-30T13:20:20Z
<p>Hay guys, I'm doing some work where i have a large collection of forms. Seems these aren't 'posted' the traditional way (i.e using a submit button). I need a way to collect all the names and values of all form data when clicking a link (document.location is then used for redirects).</p>
<p>I want names to stay intact so that i can used a simple PHP script to work with the data.</p>
<p>any suggestions?</p>
http://stackoverflow.com/questions/1722212/dynamic-web-record0Dynamic web recordMarvin2009-11-12T13:36:12Z2009-11-30T08:00:05Z
<p>Hi, im trying to build a simple app:</p>
<ul>
<li>Six colums with these values</li>
</ul>
<p>Nr, Name, checkbox 1, checkbox 2, checkbox 3, checkbox 4.</p>
<p>The checkboxes are project stages, Im using Mysql to store the data and retrieving it to a webpage with php.</p>
<p>My problem is on how to go updating the checkboxes, and also how to filter the results (display only records with checkbox 1 checked). </p>
<p>Or can anyone recommend other solutions/platforms?</p>
<p>This is not overly complex I thought someone must knew a better or easier way to do this.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1818249/form-with-no-action-and-where-enter-does-not-reload-page0form with no action and where enter does not reload page.Matt Roberts2009-11-30T07:04:44Z2009-11-30T07:08:48Z
<p>I am looking for the neatest way to create an html form which does not have a submit button. That itself is easy enough, but I also need to stop the form from reloading itself when submission-like things are done (for example, hitting enter in a text field).</p>
http://stackoverflow.com/questions/1817786/jquery-dynamic-rows-with-form0Jquery dynamic rows with formbocca2009-11-30T04:00:12Z2009-11-30T04:09:10Z
<p>I am trying to change 'inputs' in this demo to 'selects'. The demo works fine, which is at:</p>
<pre>
http://devblog.jasonhuck.com/assets/infiniteformrows.html
</pre>
<p>The problem with modified is is everytime you click on add new row, it loses previous row selection, what was selected.</p>
<pre><code> <html>
<head>
<title>Infinite Form Rows</title>
<script
type="text/javascript"
src="http://cachefile.net/scripts/jquery/1.2.3/jquery-1.2.3.min.js">
</script>
<script type="text/javascript">
$(function(){
// start a counter for new row IDs
// by setting it to the number
// of existing rows
var newRowNum = 0;
// bind a click event to the "Add" link
$('#addnew').click(function(){
// increment the counter
newRowNum += 1;
// get the entire "Add" row --
// "this" refers to the clicked element
// and "parent" moves the selection up
// to the parent node in the DOM
var addRow = $(this).parent().parent();
// copy the entire row from the DOM
// with "clone"
var newRow = addRow.clone();
// set the values of the inputs
// in the "Add" row to empty strings
$('input', addRow).val('');
$('select', addRow).val('');
// replace the HTML for the "Add" link
// with the new row number
$('td:first-child', newRow).html(newRowNum);
// insert a remove link in the last cell
$('td:last-child', newRow).html('<a href="" class="remove">Remove<\/a>');
// loop through the inputs in the new row
// and update the ID and name attributes
$('input', newRow).each(function(i){
var newID = newRowNum + '_' + i;
$(this).attr('id',newID).attr('name',newID);
});
// loop through the inputs in the new row
// and update the ID and name attributes
$('select', newRow).each(function(i){
var newID = newRowNum + '_' + i;
$(this).attr('id',newID).attr('name',newID);
});
// insert the new row into the table
// "before" the Add row
addRow.before(newRow);
// add the remove function to the new row
$('a.remove', newRow).click(function(){
$(this).parent().parent().remove();
return false;
});
// prevent the default click
return false;
});
});
</script>
</head>
<body>
<form>
<table id="tabdata">
<thead>
<tr>
<th>Row</th>
<th>Cell 1</th>
<th>Cell 2</th>
<th>Cell 3</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td><a id="addnew" href="">Add</a></td>
<td> <select name="1_0" id="1_0" style="width: 160px;">
<option value="option1">Option 1</option>
<option value="option2">Option 2</option>
<option value="option3">Option 3</option>
<option value="option4">Option 4</option>
<option value="option5">Option 5</option>
</select>
</td>
<td><input id="n0_2" name="n0_2" type="text" /></td>
<td><input id="n0_3" name="n0_3" type="text" /></td>
<td></td>
</tr>
</tbody>
</table>
<input id="go" name="go" type="submit" value=" Save " />
</form>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1814492/jquery-to-target-same-id-as-class-name-of-clicked-element1Jquery to target same id as class name of clicked element?cannyboy2009-11-29T02:51:50Z2009-11-30T03:10:14Z
<p>I'm trying to use jquery to enable a form button only after a radio button has been selected.
It's a t-shirt shop where the user is required to choose a size before the 'add to cart' button becomes enabled.
The html looks a bit like this:</p>
<pre><code><input class="radioclick product21" type="radio" name="variation[variation_select_21_1]" value="1">Big
<input class="radioclick product21" type="radio" name="variation[variation_select_21_2]" value="2">Small
<input type="submit" id="product21" class="buy_button" name="Buy" disabled="disabled" value=" ">
</code></pre>
<p>So, the submit button is disabled. To enable it when the user clicks a radio button, I use this jquery:</p>
<pre><code>$(function()
{
$('.radioclick').click(function()
{
$('.buy_button').removeAttr('disabled');
$('.buy_button').attr('value', 'add to cart');
});
});
</code></pre>
<p>However, that enables ALL the submit buttons on the page (there's lots of t-shirts on the page). The second class name of the radio button is the same as the id of the submit button, so is there a way to use this classname to target the enabling of the specific submit button?</p>
<p>(hope that all makes sense!)</p>
http://stackoverflow.com/questions/1623659/form-submit-with-javascript-works-in-google-chrome-only-once1Form submit with javascript works in Google Chrome only onceRayZ2009-10-26T08:27:31Z2009-11-30T02:18:56Z
<p>I have simple form.</p>
<pre><code><form target="_blank" action="somescript.php" method="Post" id="simpleForm">
<input type="hidden" name="url" value="http://...">
<input type="hidden" name="code" value="wrxosf">
</form>
</code></pre>
<p>...and there are some anchor link</p>
<pre><code><a href="#" onclick="$('#simpleForm').submit();return false;">Do it!</a>
</code></pre>
<p>It works fine in FireFox or IE, but Google Chrome.
Chrome does once, then link become unclickable.</p>
http://stackoverflow.com/questions/1816979/insert-multiple-rows-into-mysql-with-php-using-foreach-arrays0Insert multiple rows into mysql with php using foreach arraysjrutter2009-11-29T22:20:11Z2009-11-29T22:54:02Z
<p>Im stuck, been trying to figure this out for 2 hours now. I have figured out the foreach loop, but cant figure out how to insert the data now.</p>
<p>here is my php, what am I doing wrong?</p>
<pre><code> $query = "INSERT INTO images (thumb_path, image_path, main_image, project_id) VALUES ";
foreach($_POST as $key => $value) {
$query .= "$thumb_path,$image_path,$main_image,$_POST[project_id])";
$result = mysql_query($query, $connection);
}
</code></pre>
<p>Thanks!</p>
<p>Should I lay it out like this, sorry still a newbie to foreach and how it works.</p>
<pre><code>foreach($_POST as $key => $value) {
$query = "INSERT INTO images VALUES (thumb_path, image_path, main_image, project_id),";
$query .= "$value[thumb_path], $value[$image_path], $value[$main_image], '$_POST[project_id'])";
}
$result = mysql_query($query, $connection);
</code></pre>
http://stackoverflow.com/questions/1815911/why-the-jmeter-not-work1why the jmeter not work ?MemoryLeak2009-11-29T16:07:47Z2009-11-29T20:31:52Z
<p>I use jmeter to record the requests and then perform a performance test.
after i records all the requests with proxy server.
and these requests contain post form.
after that I run the test cases, but I found the post form not work, it can not create a record in website's database automatically.
but before that i used webload, everything is oKK
What's the problem ?What can i do for this ?</p>
http://stackoverflow.com/questions/1813280/cant-get-jsf-input-field-value-on-java-backend1Can't get JSF input field value on JAVA backendsergionni2009-11-28T18:22:29Z2009-11-28T19:11:08Z
<p>Hello.</p>
<p>I have following UI part on JSF - it's simple search form with input field and submit:</p>
<pre><code> <h:form>
<h:commandButton action="#{operation.found}" value="#{msg.search}" />
<h:inputText name="searchParam"/>
</h:form>
</code></pre>
<p>And correspondingly, on backend, i attempt to get value of input field next way:</p>
<pre><code>public List<Store> getFound() {
String name = (String) FacesContext.getCurrentInstance()
.getExternalContext().getRequestParameterMap().get(
"searchParam");
SessionFactory sessionFactory = new Configuration().configure()
.buildSessionFactory();
HibernateTemplate hbt = new HibernateTemplate();
hbt.setSessionFactory(sessionFactory);
foundStores = hbt.find(BEAN_PATH + " WHERE name = ?",
new Object[] { name });
return foundStores;
}
</code></pre>
<p>And null name is passed to backend.</p>
<p>It seems that problem in .jsf part, but from first glance looks ok...</p>
http://stackoverflow.com/questions/1813085/is-it-redundant-to-use-the-name-attribute-for-input-fields-in-modern-web-develo1Is it redundant to use the "name" attribute for input fields in modern web development? BitDrink2009-11-28T17:09:08Z2009-11-28T18:44:43Z
<p>Hello,</p>
<p>I've noticed a lot of websites with form(s) containing input fields whose "name" attribute is specified even if it isn't used for styling or scripting purpose!</p>
<p>Moreover, according to <a href="http://www.w3.org/TR/html4/interact/forms.html#adef-name-FORM" rel="nofollow">the official document</a> about the form in HTML document ...</p>
<blockquote>
<p><strong>name = cdata [CI]</strong> This attribute names
the element so that it may be referred
to from style sheets or scripts. Note.
This attribute has been included for
backwards compatibility. Applications
should use the id attribute to
identify elements.</p>
</blockquote>
<p>So, my question is: should this attribute used only for styling and scripting purposes?</p>
<p>Thanks in advance!</p>
<p><hr></p>
<p><strong>EDIT:</strong> In particular, could be avoided the use of this attribute with input fields of "text" type (when there aren't no styling or scripting purposes)? </p>
<p><hr></p>
<p><strong>EDIT 2:</strong> So, you have almost confirmed what I had thought about: the "name" attribute will be deprecated in further HTML specifications/standards!!!??? It is still "alive" only <code>for backwards compatibility</code> ... in some cases can be avoided but there are still some cases (such as the radio button) where it is necessary!</p>
http://stackoverflow.com/questions/1809045/chinese-search-form-in-flash0chinese search form in flashAndy2009-11-27T14:19:36Z2009-11-28T08:47:31Z
<p>hey!!</p>
<p>i'm working on a menu with a search field, all this menu is done in flash, on the english side works perfect, you write "dah" and it searches for "dah" but on chinese, you write "餅" it posts "??" instead the characters that i want to search for.</p>
<p>I changed the encodig, but it just got things worst, i just can write squares if i change the encoding to big5, lol.</p>
<p>does anybody has an idea about how can i solve the encoding issue on flash??</p>
http://stackoverflow.com/questions/1811821/mdi-child-form-start-position-problem0MDI Child Form Start Position Problemalex2009-11-28T06:52:41Z2009-11-28T07:01:39Z
<p>Hi:</p>
<p>I am having this strange problem with the start position of the MDI child Form.
Here is my code for the start position, I wanted it to be the middle left of
the MDI Parent Form.</p>
<pre><code> //show the task bar
ChildForm c1 = new ChildForm();
c1.MdiParent = this;
c1.StartPosition = FormStartPosition.Manual;
c1.Location = new Point(0, this.Height/2);
</code></pre>
<p>Strange thing is every time I start my Mdi parent form, the vertical scrollbar show up
and the mdi child form is position lower than half of the MDI parent form's height.
Then if I scroll the scroll bar down to see the whole mdi child form, the scrollbar disappear.</p>
<p>After this point, no matter how I change the size of the mdi parent form, the scrollbar will
not show up again. </p>
<p>Does Anybody knows Why?</p>
<p>Also, I was wondering if it is possible to hide a mdi child form with only a handle-like control left
in the mdi parent form. If the user click that handle, then the form show up again. If the user
click somewhere else, the form hide. It is kind of like Window taskbar. </p>
<p>I tried to use form.hide(), but it hides the whole mdi child form.</p>
<p>Thanks</p>
<p>Alex</p>
http://stackoverflow.com/questions/1809494/post-the-checkboxes-that-are-unchecked0Post the checkboxes that are uncheckedreach4thelasers2009-11-27T15:56:29Z2009-11-27T16:31:23Z
<p>I've got a load of checkboxes that are by default checked. My users will probably uncheck a few of the checkboxes (if any) and leave the rest of them checked. Is there any way to get the checkboxes that are NOT checked in a form post, rather than the ones that are checked?</p>
http://stackoverflow.com/questions/1808329/delphi-form-painting-black-flash-when-restoring1Delphi Form Painting Black Flash When Restoringavenmore2009-11-27T11:57:18Z2009-11-27T15:17:58Z
<p>When I minimize and restore my Delphi application, the window contents flash a horrible black before (re)painting on Vista/Win7. This can also be seen with the Delphi 2007 IDE - the Object Inspector, Project Manager, Messages window (but not the editor contents) also flash black when restoring.</p>
<p>None of the ususal flicker-free painting techniques seem to make any difference, and some even make it worse: DoubleBuffered, WS_EX_COMPOSITED, WM_ERASEBKGND, etc.</p>
<p>Most Microsoft applications do not exhibit this behavior. Is this a problem with Delphi's implementation of Windows forms? Does anyone know of a workaround?</p>
http://stackoverflow.com/questions/1806782/ie-prompt-about-unsaved-form-data0IE prompt about unsaved form dataNick Bedford2009-11-27T04:44:25Z2009-11-27T10:31:15Z
<p>I'm having an unexpected "annoying" popup in IE7 (and possibly other versions). As expected IE prompts you about unsaved form data when closing the window which is fine. But I have a <code>form</code> inside a <code>div</code> and now when I toggle the <code>display</code> CSS style between <code>none</code> and <code>block</code>, IE thinks I'm closing the form with unsaved data and shows the warning about closing an unsaved form! I don't want my users to be annoyed when simply hiding a form in my IE-based web app.</p>
<p>Anyone know how to overcome this?</p>
http://stackoverflow.com/questions/386885/is-there-a-javascript-mvc-micro-framework7Is there a Javascript MVC (micro-)framework?nicholaides2008-12-22T17:52:29Z2009-11-26T22:27:18Z
<p>Are there any client-side Javascript MVC (micro-)frameworks?</p>
<p>I have a rather complicated HTML form and it would benefit from the MVC pattern.</p>
<p>EDIT:</p>
<p>I imagine a good solution would provide the following:</p>
<ul>
<li>Model and View update the Controller when values change (Observer pattern)</li>
<li>Populate the model from the form data when the page loads</li>
<li>Populate the form from the model when the model changes </li>
</ul>
<p>Ajax, comet, jsonp and all that jazz are serious overkill. I edited this post to say say <strong>micro-</strong>framework.</p>
http://stackoverflow.com/questions/1805819/cross-site-tomcat-form-post-not-working0Cross-site tomcat form post not workingRolf2009-11-26T21:46:47Z2009-11-26T22:22:17Z
<p>Hi,</p>
<p>For a customer, I need to write a Servlet which can print values in a form post. The form is hosted on another server and looks somewhat like this:</p>
<pre><code><form action="http://myserver/myServlet" method="POST">
<input type="text" id="someName" value="someInterestingValue"/>
<input type="submit" value="submit" />
</form>
</code></pre>
<p>I have a Tomcat 5.0.28 server available, running on a Java 1.4 jdk, so I made a simple servlet:</p>
<pre><code>public class ProxyServlet extends HttpServlet {
public void doPost(HttpServletRequest req,
HttpServletResponse res)
throws ServletException, IOException {
PrintWriter out = res.getWriter();
Enumeration a =req.getAttributeNames();
while (a.hasMoreElements()){
String attrname = (String) a.nextElement();
out.println(attrname+"="+req.getAttribute(attrname)+"<br/>");
}
out.close();
}
}
</code></pre>
<p>When I go to the servlet by URL everything looks as expected. When I send a GET request with some parameters, I can see those as attributes in the debugger in the doGet() method (method was left out for brevety).</p>
<p>However, in the doPost(), my form fields seem to be missing. I've looked into the Tomcat logfiles, and nothing special is logged. I tried to add a crossdomain.xml to some directories but did not find a way to change this behaviour. </p>
<p>So to be clear: The Form as listed above is on server A. My servlet runs on an existing legacy Tomcat/Java application hosted on server B. When the form is of type "POST" none of the fields arrive at the Servlet on server B. Apache is NOT "in front" of Tomcat.</p>
<p>Is there some configuration setting I am missing in Tomcat?
Any tips or suggestions where to look next?
Help is greatly appreciated.</p>
http://stackoverflow.com/questions/1799264/disable-mobile-phone-and-fax-from-joomla-contact-information0Disable "mobile phone" and "fax" from joomla contact informationMala2009-11-25T19:08:00Z2009-11-26T03:58:48Z
<p>Hi</p>
<p>I have a joomla installation with a contacts form. Specifically, there are two contacts with position, email, name, phone. However, joomla seems to insist on having two empty columns "Mobile phone" and "Fax" that I can't seem to get rid of. Neither contact has a mobile phone or fax, and they are disabled in both sets of contact parameters?</p>
<p>what am I doing wrong?</p>
<p>Thanks!<br>
Mala</p>
http://stackoverflow.com/questions/1797914/creating-a-form-in-c0Creating a Form In C++Nathan Campos2009-11-25T15:58:41Z2009-11-25T20:50:38Z
<p>Hello,</p>
<p>I'm just starting to use <strong>MetroWerks CodeWarrior 1.1 For Mac 68k</strong> in a Mac System 7.5.5, but I need to know: How can I create a simple Form with a TextBox on it? Thanks.</p>
http://stackoverflow.com/questions/1799327/is-there-a-way-to-set-the-default-values-for-sfwidgetformfilterdate-widget0Is there a way to set the default values for sfWidgetFormFilterDate widget?Stepashka2009-11-25T19:16:20Z2009-11-25T20:50:14Z
<p>I have an auto generated BaseBlahBlahBlahFilter.class file in my /lib/filter/base/ folder. It contain the following line for 'data' type field :</p>
<pre><code>'date' => new sfWidgetFormFilterDate(array('from_date' => new sfWidgetFormDate(), 'to_date' => new sfWidgetFormDate(), 'with_empty' => true)),
</code></pre>
<p>When the form loads it shows me empty values for all month/day/year drop downs. Is there a way I can set default values (for example today's date) to that drop downs?</p>
http://stackoverflow.com/questions/1594952/jquery-disable-enable-submit-button0jquery disable/enable submit buttonkmunky2009-10-20T14:21:12Z2009-11-25T20:11:17Z
<p>i have this hmtl:</p>
<pre><code><input type="text" name="textField" />
<input type="submit" value="send" />
</code></pre>
<p>how can i do something like this:
-when the text field is empty the submit should be disabled(disabled="disabled")
-when something is typed in the text field to remove the disabled attribute
-if the text field becomes empty again(the text is deleted) the submit button should be disabled again</p>
<p>i tried something like this</p>
<pre><code>$(document).ready(function(){
$('input[type="submit"]').attr('disabled','disabled');
$('input[type="text"]').change(function(){
if($(this).val != ''){
$('input[type="submit"]').removeAttr('disabled');
}
});
});
</code></pre>
<p>..but it doesn't work.any ideas? thanks</p>
http://stackoverflow.com/questions/1798474/problem-with-caching-maybe-when-using-ajax-and-php0Problem with caching (maybe) when using AJAX and PHPcallaghan.matthew2009-11-25T17:15:45Z2009-11-25T17:52:44Z
<p>Hi</p>
<p>Firstly I tried fiding some similar posts but could not quite find anything. Mainly because I see this problem in FF and not IE only.</p>
<p>I had a web page that was updating a mysql db no problem with some data. Then today, I switched the way it does this so that I can use an ID instead of a value, so for sizes, instead of small, medium and large it is 1, 2 and 3.</p>
<p>The site in question is here: <a href="http://www.emmasykesphotography.co.uk/recent-weddings.php" rel="nofollow">http://www.emmasykesphotography.co.uk/recent-weddings.php</a> and you can get to a test gallery by entering the code 1234.</p>
<p>I am getting the script to outoput per each time you add to basket.</p>
<p>So under the radio buttons, there is the values 1, 2 and 3.</p>
<p>The html for this bit is as follows:</p>
<p> Small (6x4) - £4.99<br/> Medium (7x5) - £6.99<br/> Large (8x6) - £10.99</p>
<p>I have decided for now to hand code it in to get it working.</p>
<p>This gets sent to an included javascript file and then gets sent to an insert page as thus:</p>
<p>unction createObject() {
var request_type;
var browser = navigator.appName;
if(browser == "Microsoft Internet Explorer"){
request_type = new ActiveXObject("Microsoft.XMLHTTP");
}else{
request_type = new XMLHttpRequest();
}
return request_type;
}</p>
<p>var http = createObject();</p>
<p>/* -------------------------- <em>/
/</em> INSERT <em>/
/</em> -------------------------- <em>/
/</em> Required: var nocache is a random number to add to request. This value solve an Internet Explorer cache issue */
var nocache = 0;
function insert() {
// Optional: Show a waiting message in the layer with ID login_response
document.getElementById('insert_response').innerHTML = "Just a second..."
// Required: verify that all fileds is not empty. Use encodeURI() to solve some issues about character encoding.
var image= encodeURI(document.getElementById('image').value);
var image_Size= encodeURI(document.getElementById('image_Size').value);</p>
<p>alert(image_Size);
alert(nocache);</p>
<p>// Set the random number to add to URL request
nocache = Math.random();
// Pass the login variables like URL variable
http.open('get', 'insert.php?image='+image+'&imageSize='+image_Size+'&nocache = '+nocache);
http.onreadystatechange = insertReply;
http.send(null);
}
function insertReply() {
if(http.readyState == 4){
var response = http.responseText;
// else if login is ok show a message: "Site added+ site URL".
document.getElementById('insert_response').innerHTML = 'Image added:'+response;
}
}</p>
<p>As you can see, no matter what happens, the alert popup says 1. Even if you select medium or large.</p>
<p>Has anyone any ideas what may be going on here.</p>
<p>Thanks in advance.</p>
<p>Paddy</p>
http://stackoverflow.com/questions/1797304/how-to-pass-values-of-a-form-to-the-sever-with-ajax-and-jquery0How to pass values of a form to the sever with Ajax and Jquery?Steven2009-11-25T14:36:14Z2009-11-25T14:44:23Z
<p>How to use Ajax and Jquery to send all the values of input elements within a form to the server? The input elements are dynamically generated so a list of input names in an Ajax post is troublesome. So is there an elegant way to do it?</p>
http://stackoverflow.com/questions/1797234/how-to-access-form-controls-on-postback-from-dynamically-built-form0How to access Form controls on Postback from Dynamically built form.Dave2009-11-25T14:26:39Z2009-11-25T14:34:30Z
<p>I'm adding controls at run-time to the <code>Page Form</code> object.</p>
<p>Each control has an Id.</p>
<p>On postback, I want to be able to access these controls and their values.</p>
<p>Currently, when I do a postback, the form has no controls in the <code>Form.Controls</code> Collection.</p>
<p>How can I rectify this?</p>
<p>Is this only possible if you add the controls to the page every time the page loads?</p>
http://stackoverflow.com/questions/536775/c-form-app-system-account0C# form app system account Jon2009-02-11T13:33:44Z2009-11-25T07:27:21Z
<p>Is it possible to run a windows form application or a console application under system account... Like asp.net application can run under system account by changing machine config file . This is to give more privileges to the program ...</p>
http://stackoverflow.com/questions/1795043/autocomplete-filling-out-email-website-address-in-forms-in-flash0Autocomplete filling out Email/Website/Address in Forms in Flash?viatropos2009-11-25T06:33:18Z2009-11-25T06:45:52Z
<p>How do websites I've never been to fill out my information (email address, name, phone, etc.)? Sometimes they pick my old email instead of my new one, so they must be reading it from something I might be able to access with some javascript. I would like to be able to do something like this in Flash, so any ideas how I could tap into how it works with some javascript?</p>
<p>Update:</p>
<p>Having a little better understanding of what's going on, since the browser is suggesting the autocomplete values, is it possible to, in the Flash HTML template/wrapper, create forms with the same fields as your flash project, and when the user focuses in on a flash form item, it quickly shifts focus to the equivalent "hidden" html form item, gets the autocomplete value, and sends it back to flash? Is that possible?</p>
<p>Thanks!</p>