Welcome Guest, Not a member yet? Register   Sign In
Issue with form validation
#17

Strange error on if($this->request->getMethod())
Solved it in version 4.0.4 as follow

In controller
Code:
$request = $this->request->getMethod();       
        if ($request == 'post'){
            $form_validation = $this->validate([
                'ID_ASSET' => ['label' => 'Reference', 'rules' => 'required|integer'],]);
        }
        else
        {$form_validation = $this->validate([]);}
if (!$form_validation){}
else{}


in my form
Code:
<?= $validation->listErrors('validation_site'); ?>

And in the view for the errors
Code:
<?php if (count($errors)> 0): ?>
<div class="alert alert-danger" role="alert"> 
    <?php foreach ($errors as $error) : ?>
    <p class="mb-0">
        <i class="mr-1 bx bx-edit"></i><?= esc($error) ?>
    </p>
    <?php endforeach ?>
</div>
<?php endif;?>
Reply


Messages In This Thread
Issue with form validation - by happyape - 09-27-2018, 12:47 AM
RE: Issue with form validation - by InsiteFX - 09-27-2018, 04:04 AM
RE: Issue with form validation - by happyape - 09-27-2018, 05:32 AM
RE: Issue with form validation - by unodepiera - 09-30-2018, 12:26 AM
RE: Issue with form validation - by InsiteFX - 09-30-2018, 03:57 AM
RE: Issue with form validation - by unodepiera - 09-30-2018, 10:48 AM
RE: Issue with form validation - by happyape - 09-30-2018, 02:46 PM
RE: Issue with form validation - by unodepiera - 09-30-2018, 10:47 PM
RE: Issue with form validation - by happyape - 10-01-2018, 12:47 AM
RE: Issue with form validation - by unodepiera - 10-01-2018, 01:18 AM
RE: Issue with form validation - by happyape - 10-01-2018, 01:55 AM
RE: Issue with form validation - by dave friend - 10-01-2018, 09:16 AM
RE: Issue with form validation - by InsiteFX - 10-01-2018, 10:40 AM
RE: Issue with form validation - by dave friend - 10-01-2018, 11:05 AM
RE: Issue with form validation - by InsiteFX - 10-01-2018, 12:08 PM
RE: Issue with form validation - by Ekley - 10-11-2019, 07:22 AM
RE: Issue with form validation - by Bart Goossens - 08-22-2020, 08:58 AM
RE: Issue with form validation - by jreklund - 08-22-2020, 12:26 PM



Theme © iAndrew 2016 - Forum software by © MyBB