Custom Validation

Hello,

I want to add validation for name field in Account module.

Does anyone have any code reference or hint ?

Parents Reply
  • Hello,
    Here how to do it in your editviewdefs.php file for including your js

    <?php

    $module_name = 'Accounts';

    $viewdefs [$module_name] =

    array (

      'EditView' =>

      array (

        'templateMeta' =>

        array (

      'includes' =>

      array (

      0 =>

      array (

      'file' => 'custom/modules/Accounts/abc.js',

      ),

      ),

          'maxColumns' => '2',

          'widths' =>

    and create a abc.js file at the following location
    Add your jquery validation in that js file simple

    I hope it helps

Children