submission of values

This is a discussion on "submission of values" within the JavaScript Forum section. This forum, and the thread "submission of values are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > JavaScript Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Aug 22nd, 2006, 17:39
New Member
Join Date: Aug 2006
Location: phoneix
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
submission of values

Hi I have a dropdown list of regions like abc,def,ghi,jkl
to submit those regions I am using follwing function using onchange event.
problem-when user changes the value result comes.But In dropdown when user want result for current visible value no results(obviously because same value is used which was before clicking on dropdown).
Now I wanna modify this function using if else like conditiion that if onchange happens value will be submitted else whatever value visible in jsp should be submitted.regionform where getter and setter property is set for form.
<script language="javascript">
function submitRegion()
{
document.regionForm.submit();
}
</script>
Reply With Quote

  #2 (permalink)  
Old Aug 22nd, 2006, 22:31
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Skype™ to ukgeoff
Re: submission of values

To be honest, it's difficult to understand what it is you actually want but I think what you want is following the submission, when the form is redisplayed, the selection box should show the value that was previously selected.

If this is what you want, you are going to have to use scripting to add the 'selected' attribute to the <option> tag whose value was selected.
Reply With Quote
Reply

Tags
submission, values

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Option values AdINo Web Page Design 3 Jul 6th, 2007 10:09
Option values AdINo JavaScript Forum 2 Jul 5th, 2007 18:48
Highest Values robukni PHP Forum 6 May 4th, 2007 11:33
Setting Form Values to Previously Entered Values masonbarge PHP Forum 6 Oct 17th, 2006 17:36
Assign string values to integer values of a session variable Andy K Classic ASP 1 Jul 13th, 2005 08:29


All times are GMT. The time now is 19:33.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43