close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

server validation based on condition?

Thread began 11/27/2019 7:41 am by SCar87011738 | Last modified 12/01/2019 1:53 pm by Ray Borduin | 364 views | 3 replies |

SCar87011738

server validation based on condition?

Hello all,
I have a form with a datepicker.
The datepicker should allow some interval depending of the time of the day.
Example:
if it's < 13:59 the datepicker should allow me to select the day starting from tomorrow.
If it's > 14.00 the datepicker should allow me do select only the day after tomorrow and later.

I just applied a condition to the datepicker code, but I need to add this contition to the server validation too.
Should I edit the webassist server validation code manually or is there a way to do this with the WA interface?

Here is the code I edited for the datepicker (it seems to work):

$.datepicker.setDefaults($.datepicker.regional['it']);
$('#data_ritiro_obi').datepicker({
beforeShowDay: disableWeekends,
dateFormat: 'dd/mm/yy',
showAnim: 'show',

<?php
$time = date("H");
if ($time < "14") { // WebAssist Show If

?>
minDate: '+1',
<?php
} else {
?>
minDate: '+2',
<?php
}
?>



Thanks in advance for any suggestion.

tony

Sign in to reply to this post

Ray BorduinWebAssist

You should be able to use date validation to set the minimum date. I think you could do a min date like:

php:
<?php echo(date("m/d/Y", (date("G")>=14)?time():strtotime("+1 day"))); ?>
Sign in to reply to this post
Did this help? Tips are appreciated...

SCar87011738

Thanks for the reply, Ray.
But I can't see the condition.
Ho can I handle this?

If time it's < 14 the min date is +1.

But if time it's > 14 the min date is +2.

TIA
Tony

Sign in to reply to this post

Ray BorduinWebAssist

Set the min date to:

php:
<?php echo(date("m/d/Y", (date("G")>=14)?strtotime("+2 day"):strtotime("+1 day"))); ?>
Sign in to reply to this post
Did this help? Tips are appreciated...

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...