[fw-general] Re: [fw-mvc] Re: [fw-general] Zend_Form - Validation of field with same name as the form gives problems

2008-06-17 Thread Matthew Weier O'Phinney
-- Jurriën Stutterheim <[EMAIL PROTECTED]> wrote (on Tuesday, 17 June 2008, 09:41 PM +0200): > To answer myself, this is a known issue: > http://framework.zend.com/issues/browse/ZF-3393 > > Guess I overlooked it : ( While I recognize this is a bug, I consider it a low priority item. Why? Because a

Re: [fw-general] Zend_Form - Validation of field with same name as the form gives problems

2008-06-17 Thread Jurriën Stutterheim
To answer myself, this is a known issue: http://framework.zend.com/issues/browse/ZF-3393 Guess I overlooked it : ( On Jun 17, 2008, at 21:38 , Jurriën Stutterheim wrote: Hi all, While working on the MultiPageForm action helper I ran into a weird bug with Zend_Form. Here's the deal: I hav

[fw-general] Zend_Form - Validation of field with same name as the form gives problems

2008-06-17 Thread Jurriën Stutterheim
Hi all, While working on the MultiPageForm action helper I ran into a weird bug with Zend_Form. Here's the deal: I have one "master" form, which contains 3 subforms. The last subform is called "survey". In this last form I have a textarea that's also called "survey". Now if I submit this

[fw-general] Zend_Oauth: Proposal for Community Comment

2008-06-17 Thread Pádraic Brady
Right on the tail of Zend_Crypt_Rsa comes my updated, refreshed, (and in active development!) proposal for an OAuth component. http://framework.zend.com/wiki/pages/viewpage.action?pageId=37957 For those unaware, OAuth is a recently finalised open standard for authorising applications to a web se

[fw-general] Fwd: Zend framework help

2008-06-17 Thread Matthew Ratzloff
I think this was supposed to go to the mailing list. -Matt -- Forwarded message -- From: "Raveen V.R" <[EMAIL PROTECTED]> Date: Tue, 17 Jun 2008 15:24:37 +0530 Subject: Zend framework help To: Matthew Ratzloff <[EMAIL PROTECTED]> Hi I'm a php programmer now working with zend fra

[fw-general] findManyToManyRowset doesn't use $_schema ?

2008-06-17 Thread Philip G
Hum, is there a reason findManyToManyRowset() does not use $_schema on my table classes? Inserts work just fine, no problem. But when I attempt to use findManyToManyRowset, I get table or view does not exist. As well as the following Notice Error: Notice: Undefined offset: 2 in /home/httpd

Re: [fw-general] How do I get my patch applied?

2008-06-17 Thread Carlton Gibson
On 17 Jun 2008, at 14:18, Matthew Weier O'Phinney wrote: -- Carlton Gibson <[EMAIL PROTECTED]> wrote (on Tuesday, 17 June 2008, 09:31 AM +0100): I'm a beginner at the whole open source community-reviewed project thing and despite promises that "Contributing is easier than you think" am findi

Re: [fw-general] How do I get my patch applied?

2008-06-17 Thread Matthew Weier O'Phinney
-- Carlton Gibson <[EMAIL PROTECTED]> wrote (on Tuesday, 17 June 2008, 09:31 AM +0100): > I've written a patch for an issue with Zend_Filter_Input. > ( http://framework.zend.com/issues/browse/ZF-3100 ). > > Not sure what else to do, I've uploaded it to the issue tracker. And I'm > wondering now, w

Re: [fw-general] Multiple decorators in one form

2008-06-17 Thread Matthew Weier O'Phinney
-- Rohit83 <[EMAIL PROTECTED]> wrote (on Monday, 16 June 2008, 10:48 PM -0700): > I have developed form and wrote the custom decorators for same,it works fine > now i want to add > one more standard decorator on one of the form element,Will anybody suggest > me the way? I'm assuming: 1) you're

Re: [fw-general] Several questions on ZF

2008-06-17 Thread Matthew Weier O'Phinney
-- Neriodavid(Wei Dai) <[EMAIL PROTECTED]> wrote (on Tuesday, 17 June 2008, 10:15 AM +0800): > Sweet, thank you very much! > > I guess use the ViewScript decorator is much more comfortable in many case if > you have a well designed form. > > By the way, did you try the CredentialTreatment('Passwo

Re: [fw-general] Select Problem

2008-06-17 Thread Simon Mundy
I think it's a known bug with Mysqli/PHP - try MEDIUMTEXT instead? Hey all, i have a problem selecting from database here is my function : public function wordCVsList($Starting_id = 0, $limit = 2) { $db = Zend_Db_Table::getDefaultAdapter(); $select = $this->getAdapter()->s

[fw-general] Select Problem

2008-06-17 Thread Ahmed Abdel-Aliem
Hey all, i have a problem selecting from database here is my function : public function wordCVsList($Starting_id = 0, $limit = 2) { $db = Zend_Db_Table::getDefaultAdapter(); $select = $this->getAdapter()->select(); $select->from(array('w' => 'word_cvs'), array

Re: [fw-general] Multiple decorators in one form

2008-06-17 Thread Rohit83
Thanks for reply Actually I wrote the custom decorators to add errors and description in td and applied this decorator in my form using following code require_once 'Composite.php'; $this->addElementPrefixPath('decorator', 'decorator', 'decorator'); $this->setElementDecorato

Re: [fw-general] Multiple decorators in one form

2008-06-17 Thread Jerry McG
Rohit, I will attempt to help if you can explain what exactly you are doing in your form with your decorators. Be more precise. However, to quote from the manual: "An arbitrary number of decorators may be attached to each item (elements, display groups, sub forms, or the form object itself); howe

Re: [fw-general] Errors display

2008-06-17 Thread Jerry McG
Rohit, For such a situation as yours, I use a ViewScript decorator to customize my whole form so that I have complete control over the display of each and every element and their error, description, and label. You want to display a single error, then assign the same error to all three elements.

[fw-general] How do I get my patch applied?

2008-06-17 Thread Carlton Gibson
Hi all, I've written a patch for an issue with Zend_Filter_Input. ( http://framework.zend.com/issues/browse/ZF-3100 ). Not sure what else to do, I've uploaded it to the issue tracker. And I'm wondering now, what next? I'm a beginner at the whole open source community-reviewed project thing

[fw-general] Errors display

2008-06-17 Thread Rohit83
Hi All I have one field as shown in figure below,for this field i used three text elements of form. http://www.nabble.com/file/p17879496/Screenshot.png Now in this case all the elements of this field is required, and i want if one or more elements are empty then display only one error for them pl