Re: [fw-general] Looking for a complete Complete Zend_Paginator example

2008-10-28 Thread monk.e.boy
411161 wrote: This is what I have so far. I threw up this tutorial: http://teethgrinder.co.uk/perm.php?a=Zend-Framework-MySQL-DB-Pagination-Tutorial hope it helps. monk.e.boy -- View this message in context:

[fw-general] Hooks between Modules

2008-10-28 Thread Marko Korhonen
Hi, I'm using Drupal for one my client and doing our internal projects with Zend Framework. Drupal uses hooks, so modules can interact with other modules or the core system. I was wondering if I should create similar hook system on my Zend Framework project. I think there are 2 approaches

[fw-general] AJAX enabling of Zend + Dojo forms, and populating Select dependencies in an MVC environment, e.g. Country / State selects

2008-10-28 Thread Cameron
Phew. Big title. I'm currently building a large scale application in Zend + Dojo, and with it being so new, I'm assuming I'm one of the first to attempt such undertaking. I have built it using Matthew Weier O'Phinney's Pastebox

[fw-general] Zend_Mail send mail to an alias

2008-10-28 Thread debussy007
Hi, I defined a set of aliases in the .mailrc file. I would like to send a mail to an alias, containing several mail addresses. How is this possible ? Thank you for any info. -- View this message in context: http://www.nabble.com/Zend_Mail-send-mail-to-an-alias-tp20207521p20207521.html Sent

RE: [fw-general] Truncate String

2008-10-28 Thread O'BRIEN, Steven X
Ok, this is a very general. I am getting annoyed about all the strings I have to remember with the Zend Framework. Things like: getValidator('Authorise') Or form factory methods: $username = $this-getElement('username') -addValidator('alnum') -setRequired(true)

Re: [fw-general] Truncate String

2008-10-28 Thread Matthew Weier O'Phinney
-- O'BRIEN, Steven X [EMAIL PROTECTED] wrote (on Tuesday, 28 October 2008, 04:47 PM -): Ok, this is a very general. I am getting annoyed about all the strings I have to remember with the Zend Framework. Things like: getValidator('Authorise') Or form factory methods:

Re: [fw-general] Truncate String

2008-10-28 Thread Matthew Weier O'Phinney
-- Bradley Holt [EMAIL PROTECTED] wrote (on Tuesday, 28 October 2008, 12:29 PM -0400): Is there a simple way in ZF to truncate a string? I searched and didn't find any talk of a ZF specific component for this. I also looked at the list of standard filter classes and didn't see anything there

[fw-general] Image upload, validation and manipulation

2008-10-28 Thread bytte
I'm about to start implementing image uploads in my Zend Framework project. I've tried to work with image uploads a few months ago and it appeared to be not that straightforward at that time. The ZF documentation wasn't sufficient either. I was wondering if anyone here has links to good

Re: [fw-general] Truncate String

2008-10-28 Thread Bradley Holt
Matthew, On Tue, Oct 28, 2008 at 1:12 PM, Matthew Weier O'Phinney [EMAIL PROTECTED]wrote: -- Bradley Holt [EMAIL PROTECTED] wrote (on Tuesday, 28 October 2008, 12:29 PM -0400): Is there a simple way in ZF to truncate a string? I searched and didn't find any talk of a ZF specific component

[fw-general] Proposals 1.7

2008-10-28 Thread Wil Sinclair
Hi all, I'm going through the proposals in preparation for the 1.7 release. In particular, we'll be assigning new Zend Liaisons to proposals in any state other than 'new' and 'ready for review' and/or proposals with a Zend Liaison that is no longer at Zend. I'll be putting these proposals in

Re: [fw-general] Truncate String

2008-10-28 Thread Matthew Weier O'Phinney
-- Bradley Holt [EMAIL PROTECTED] wrote (on Tuesday, 28 October 2008, 02:28 PM -0400): On Tue, Oct 28, 2008 at 1:12 PM, Matthew Weier O'Phinney [EMAIL PROTECTED] wrote: -- Bradley Holt [EMAIL PROTECTED] wrote (on Tuesday, 28 October 2008, 12:29 PM -0400): Is there a simple way

Re: [fw-general] Truncate String

2008-10-28 Thread Bradley Holt
Matthew, On Tue, Oct 28, 2008 at 3:27 PM, Matthew Weier O'Phinney [EMAIL PROTECTED]wrote: -- Bradley Holt [EMAIL PROTECTED] wrote (on Tuesday, 28 October 2008, 02:28 PM -0400): On Tue, Oct 28, 2008 at 1:12 PM, Matthew Weier O'Phinney [EMAIL PROTECTED] wrote: -- Bradley Holt

Re: [fw-general] Looking for a complete Complete Zend_Paginator example

2008-10-28 Thread 411161
That helped a lot. Now I get this message with your code and even with my own code: Notice: Undefined index: zend_paginator_row_count in /usr/local/apache2-development/htdocs/zend/library/Zend/Paginator/Adapter/DbSelect.php on line 107 Anyone have any idea why? I did not get it with my code

Re: [fw-general] Looking for a complete Complete Zend_Paginator example

2008-10-28 Thread Bart McLeod
I just tried the same tutorial today, and it works fine for me. Maybe there are no records in your table? In that case, maybe someone should put a silencer on line 107 or check for the presence of rows. Bart 411161 schreef: That helped a lot. Now I get this message with your code and even

Re: [fw-general] Looking for a complete Complete Zend_Paginator example

2008-10-28 Thread Matthew Ratzloff
This is a known issue when using Oracle. It will be fixed for 1.7. http://framework.zend.com/issues/browse/ZF-4613 For the time being, however, you have a couple options. You can subclass the DbSelect adapter and capitalize the column identifier in ROW_COUNT_COLUMN (i.e.,

[fw-general] Populating, validating form elements with array notation

2008-10-28 Thread bytte
I'm using Zend_Form to build a form with array notation like this: (...) input name=text[] type=text input name=text[] type=text (...) The reason for this array notation is that I want to be able to dynamically add input elements to the dom through javascript. I can read the input values through

Re: [fw-general] Image upload, validation and manipulation

2008-10-28 Thread bytte
Thanks! Additionally: if anyone is in the know of any good tutorials on the net that could come in handy on this topic, feel free to post them here. -- View this message in context: http://www.nabble.com/Image-upload%2C-validation-and-manipulation-tp20211804p20219873.html Sent from the Zend