Ask a Question related to PHP Development, Design and Development.
-
Rizyak #1
Populate form values based on previous same form fields
This message is cross posted in
alt.comp.lang.php & comp.lang.javascript
I have a form for a user to input an establishment's hours and what time an
event is taking place. After the user inputs their establishment's hours of
operation I want the form elements lower in the form to adjust so that an
event can only happen when the place is open.
I have two fields for the hours:
These are both select fields with values between 0-23
store_open
store_close
Later in the form I have
event_start
event_stop
These values need to be between whatever store_open and store_close are.
I am stuck.
Thank you.
Rizyak Guest
-
Populate form fields with Unicode data using FDF Toolkit
Does anyone know about populating PDF Form dynamically with Unicode (read Arabic) data?! It displays English data correctly but displays jumbled data... -
Populate Flash Based Form from a cfgrid.
Hello, I have a flash based form in CFMX 8. It has a two cfinput fields (first name, last name), I also have a cfgrid which displays a list of... -
How to access values of form fields on am action page?
I am sending few form fields to the action page. Here is what it receives (from CF debugging info): Form Fields: 58707001=TBD 587627_01=TBD... -
authenticate win32 form client with form based authentication web services
(Type your message here) -------------------------------- From: kitchai yong Hi, Can you tell me how i authenticate the win32 form client... -
How to populate the form fields from another drop down list
Hello, I would like to populate form fields from one drop down list in the same page. The drop down list's value is from SQL database. When... -
Mick White #2
Re: Populate form values based on previous same form fields
Rizyak wrote
One approach>
> I have two fields for the hours:
> These are both select fields with values between 0-23
> store_open
> store_close
>
> Later in the form I have
> event_start
> event_stop
>
> These values need to be between whatever store_open and store_close are.
>
> I am stuck.
>
> Thank you.
Number.protoype.isBetween=function(a,b){
return this>=Math.min(a,b) && this<=Math.max(a,b);
}
if(!( +event_start < +event_end &&
+event_start.isBetween(+store_open,+store_close) &&
+event_stop.isBetween(+store_open,+store_close))){
alert ("NO")
}
Mick
Mick White Guest
-
Robert #3
Re: Populate form values based on previous same form fields
"Rizyak" <ryanREMOVEME@latitude47.comANDMETOO> wrote in message news:<ca5jc7$ke4$1@nntp1.u.washington.edu>...
Here is one approach to validating the event times:> I have a form for a user to input an establishment's hours and what time an
> event is taking place. After the user inputs their establishment's hours of
> operation I want the form elements lower in the form to adjust so that an
> event can only happen when the place is open.
>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Verify time fields</title>
<script type="text/javascript">
// ------------------------------------------
function validateAll()
{
alert("in validateAll");
var x = document.forms["myForm"];
var inputOK;
if( x.storeOpen.value == "" )
{
alert("Enter a store open time.");
inputOK= false;
}
else if( x.storeClose.value == "" )
{
alert("Enter a store close time.");
inputOK= false;
}
else if( x.eventStart.value == "" )
{
alert("Enter an event start time.");
inputOK= false;
}
else if( x.eventEnd.value == "" )
{
alert("Enter an event stop time.");
inputOK= false;
}
else
{
inputOK = checkBoth();
}
alert("from validateAll. inputOK = " + inputOK);
return inputOK;
}
// ..............................
function checkBoth()
{
alert("In checkBoth...");
var x = document.forms["myForm"];
var inputOK;
// Convert the times in string format to numeric format
// in minutes.
var storeOpen = convertTime(x.storeOpen.value);
var storeClose = convertTime(x.storeClose.value);
var eventStart = convertTime(x.eventStart.value);
var eventEnd = convertTime(x.eventEnd.value);
alert(".storeOpen.value = " + x.storeOpen.value +
" storeOpen = " + storeOpen +
"\n .storeClose.value = " + x.storeClose.value +
" storeClose = " + storeClose +
"\n .eventStart.value = " + x.eventStart.value +
" eventStart = " + eventStart +
"\n .eventEnd.value = " + x.eventEnd.value +
" eventEnd = " + eventEnd );
if ( eventStart > eventEnd )
{
alert("Event start must be before " +
"or equal to event end.");
x.eventStart.focus();
inputOK = false;
}
else if ( !isBetween(eventStart,storeOpen,storeClose) )
{
alert("Event start must occur " +
"when the store is open.");
x.eventStart.focus();
inputOK = false;
}
else if ( !isBetween(eventEnd,storeOpen,storeClose) )
{
alert("Event end must occur " +
"when the store is open.");
x.eventEnd.focus();
inputOK = false;
}
else
{
inputOK = true;
}
return inputOK;
}
// .....................................
function convertTime(timeString)
{
//Convert to a minute based value.
//Input may either be in 24 hour format
// or am/pm format.
// Examples 8:00am, 8, 8:12, 14:30, 2:30pm, or 4:30P.M.
var theTime = parseInt(timeString,10) * 60;
if ( timeString.indexOf("p") >= 0 ||
timeString.indexOf("P") >= 0 )
{
theTime += 12*60;
}
var minutesIndex = timeString.indexOf(":");
if ( minutesIndex >= 0 )
{
var minutes = timeString.substr(minutesIndex+1);
theTime += parseInt(minutes,10);
}
return theTime;
}
// ......................................
function isBetween(test,a,b)
{
return test>=a && test<=b;
}
</script>
</head>
<body>
<p>Please try out our form.</p>
<form name="myForm"
action="http://www.notavalidwebaddress.com"
method="POST"
onSubmit="return validateAll();">
<p>Store start time:<br>
<input type="text" name="storeOpen" size="20"><br><br>
Store end time:<br>
<input type="text" name="storeClose" size="20"><br>
</p>
<p>The little event times.</p>
<p>Event start time:<br>
<input type="text" name="eventStart" size="40">
<p>Event end time<br>
<input type="text" name="eventEnd" size="40">
</p>
<p><input type="submit" border="0" value="Submit">
</form>
</body>
</html>
Robert
Robert Guest



Reply With Quote

