setRegisterInArrayValidator function is not working in zend

In order to dynamic form validation handling in Zend framework we use “setRegisterInArrayValidator”. But few days back i have observed this fuction was showing me with new Zend library. With new Zend library if we write

$form = new Admin_Form_Form1();
$form->getElement(‘form_element’)->setRegisterInArrayValidator(false);

It gives the error
“Invalid type given, value should be float, string, or integer”

To resolve this problem we can use we can use the alternative function that works properly with even new Zend library. The new function will be

$element->removeValidator(“NotEmpty”);
in other words
$form->getElement(‘form_element’)->removeValidator(“NotEmpty”);

Where “NotEmpty” is validation type.

The following two tabs change content below.

Chandra Shekhar

GCP Architect
Chandra Shekhar Pandey is Google certified Cloud engineer, I am Magento2 Trained developer. Having huge experience in designing cloud solution. I have around 12 years of experience with world enterprise IT companies and fortune 500 clients. During my architecture design I am always caring about high availability, fast performance and resilient system. From the programmer background I have huge experience in LAMP stack as well. Throughout my carrier I have worked on Retail, E-Learning, Video Conferencing and social media domain. The motive of creating cutehits was just to share the knowledge/solutions I get to know during my day to day life so that if possible I can help someone for same problems/solutions. CuteHits.com is a really a very effort for sharing knowledge to rest of the world. For any query/suggestion about same you can contact me on below details:- Email: shekharmca2005 at gmail.com Phone: +91-9560201363

Latest posts by Chandra Shekhar (see all)

You may also like...