Re: [fw-general] How to use a custom Validator with a non-zend/mvc application

2009-06-30 Thread mnaveed
ave any Zend form or zend form element. So how do i register my custome validator? Thanks. David Mintz-2 wrote: > > On Tue, Jun 30, 2009 at 7:36 AM, mnaveed wrote: > >> >> Can anyone please guide me how to use a custom validator with an >> exisiting >&g

[fw-general] How to use a custom Validator with a non-zend/mvc application

2009-06-30 Thread mnaveed
Can anyone please guide me how to use a custom validator with an exisiting application. Please note that the application is not using Zend MVC modal and zend forms. I am able to use the builtin validations/filters to validate my data but not been able to use a custom validator. Thanks. -- View t

[fw-general] should i user Zend_Validate in a class to validate data

2009-06-17 Thread mnaveed
Hi, Should I user Zend_Validator in my class to validate data? I will be using it in setter methods to verify that the values passed are valid or not. Is it the right thing to do? -- View this message in context: http://www.nabble.com/should-i-user-Zend_Validate-in-a-class-to-validate-data-tp2

Re: [fw-general] Some help needed (Validation)

2009-05-28 Thread mnaveed
Thanks for the link, but can anyone give me the link for version 1.8? I tried google but wasn't able to find anything. vince. wrote: > > You mean this one: http://epic.codeutopia.net/pack/library/1.7.5 Though it > does not have 1.8 yet. > > On Thu, May 28, 2009 at 8:53 PM, Daniel Latter > wr

Re: [fw-general] Some help needed (Validation)

2009-05-28 Thread mnaveed
looked at > http://framework.zend.com/manual/en/zend.form.html > ? > > The quickstart will run you through validation fairly swiftly. > > Cheers, > M > > > > mnaveed wrote: >> >> Hello, >> I normally do all the validations (e.g. valid ema

[fw-general] Some help needed (Validation)

2009-05-27 Thread mnaveed
Hello, I normally do all the validations (e.g. valid email, digits only etc) on php script when a page is post back to the server, and if all validations are passed then execute the method of the class to save the data. There is no validations done in class itself (in setter methods for public pro