Re: [fw-general] Zend Form populate method doesn't support FilteringSelect / ComboBoxes using a Dojo datastore.

2009-11-20 Thread Tridem
My problem is similar. The only solution I found so far is using Dojo with the setUseDeclarative() method instead of the setUseProgrammatic(). By this the Comobox or FilteringSelect starts loading the multiOptions from the StoreUrl and populates it correctely. Still this isn't very pleasing. At

Re: [fw-general] Zend_Form_Element_File validator

2009-11-20 Thread holografix .
Hi Found another (better) way to customize the error messages $validator = new Zend_Validate_File_Upload(); $validator-setMessages(array('fileUploadErrorNoFile' = 'Upload an image!'')); $image = new Zend_Form_Element_File('image'); $filesmall-setLabel('Image:')

Re: [fw-general] Zend Form populate method doesn't support FilteringSelect / ComboBoxes using a Dojo datastore.

2009-11-20 Thread Matthew Weier O'Phinney
-- Tridem tech...@tridem.de wrote (on Friday, 20 November 2009, 04:01 AM -0800): My problem is similar. The only solution I found so far is using Dojo with the setUseDeclarative() method instead of the setUseProgrammatic(). By this the Comobox or FilteringSelect starts loading the multiOptions

Re: [fw-general] Zend_Form_Element_File validator

2009-11-20 Thread Daniel Latter
Hi, brill, thanks. A lot neater and easier to maintain. To me though, this is exactly what we were doing, albeit syntactically different, so would be good to get some feedback from the author to let us know what we are, if anything, doing wrong. Thanks again Dan 2009/11/20 holografix .

[fw-general] November bug hunt continues!

2009-11-20 Thread Matthew Weier O'Phinney
Greetings, all! November's Bug Hunt Days started yesterday and continue through tonight. If you haven't participated yet, now is the time to help! Note: You will need to have a signed CLA on file with us to participate. If you want some ideas on how to contribute, please visit the wiki:

Re: [fw-general] PHP + IIS + SMB + Zend Studios?

2009-11-20 Thread prodigitalson
This share is on the same network youre on (ie. not being routed over internet via VPN or something) correct? humansky wrote: On Nov 19, 2009, at 4:38 AM, Jason Webster wrote: On 18/11/2009 6:00 AM, Henry Umansky wrote: Hello all, This is not a question regarding ZF per se, I just

Re: [fw-general] Problem with Zend_translate

2009-11-20 Thread kusum
Thanks to all the suggestions... I read all and tried them... Finally my translate worked with. application.ini :- resources.translate.data = APPLICATION_PATH /languages resources.translate.adapter = array resources.translate.locale = nl resources.translate.options.scan = filename

Re: [fw-general] Problem with Zend_translate

2009-11-20 Thread kusum
Thanks to all the suggestions... I read all and tried them... Finally my translate worked with. application.ini :- resources.translate.data = APPLICATION_PATH /languages resources.translate.adapter = array resources.translate.locale = nl resources.translate.options.scan = filename

Re: [fw-general] Problem with Zend_translate

2009-11-20 Thread Thomas Weidner
The registry key Zend_Translate is used by all components which provide translation capabilities when no other translation object is set. It is used application wide and this approach is also described within the manual. By setting this key into registry there is nothing more you have to do.

[fw-general] Zend Modules - Calling a Module from Controller

2009-11-20 Thread Stephen Alistoun
Hey All, I'am trying to call a Module from the Controller and I'm keep on getting an error stated below: Class 'Default_Module_UsersTable' not found in C:\wamp\www\ZendCasts\application\controllers\IndexController.php on line 16 //*** //***Index Controller**