Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Web Programming > JavaScript > Javascript How-To
|
Javascript How-To Ask your "How do I do this with Javascript?" questions here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Javascript How-To section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 25th, 2003, 04:49 AM
Authorized User
 
Join Date: Aug 2003
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to Mimi
Default Exclude a field from refreshing

Is it possible to exclude a certain field from refreshing using Javascript(The whole form refreshes except a certain field)?

Thanks!

 
Old August 25th, 2003, 05:21 AM
joefawcett's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 3,074
Thanks: 1
Thanked 38 Times in 37 Posts
Default

A quick solution.
Instead of a reset button have a standard button and set its onclick handler to "selectiveReset(this.form)", assuming the element whose value you want to preserve is named "txtSpecial":
Code:
function selectiveReset(frm)
{
  var oInput = frm["txtSpecial"];
  var sValue = oInput.value;
  frm.reset();
  oInput.value = sValue;
}

--

Joe
 
Old August 25th, 2003, 05:45 AM
Authorized User
 
Join Date: Aug 2003
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to Mimi
Default

Thanks Joe! I'll try this in my form. :)






Similar Threads
Thread Thread Starter Forum Replies Last Post
Exclude Namespace Atribute bonekrusher XSLT 3 May 4th, 2007 08:18 AM
Using a linkdoc to exclude rows geordaa XSLT 1 August 24th, 2006 11:19 AM
Exclude Nodes seanhaggerty XSLT 1 February 3rd, 2005 06:00 AM
refreshing XML withour refreshing the page sasidhar79 XML 1 January 12th, 2005 05:16 AM
Exclude Certain Forms Ben Horne Access VBA 11 March 16th, 2004 03:06 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.