Re: [fw-general] Zend_Paginator Negative itemCountPerPage

2008-12-29 Thread Bradley Holt
Matt, No problem and thanks for the info! I'll keep using -1 for now since you say that will be forward-compatible. I've opened an enhancement ticket as ZF-5376: http://framework.zend.com/issues/browse/ZF-5376 Thanks, Bradley On Mon, Dec 29, 2008 at 5:18 PM, Matthew Ratzloff wrote: > Hi Bradley

Re: [fw-general] Zend_Paginator Negative itemCountPerPage

2008-12-29 Thread Matthew Ratzloff
Hi Bradley, Sorry about the confusion, I misread your requirement. The -1 trick is in fact not an intended feature (if it were, it would be 0, to be in line with typical PHP API), but if it works, use it for now. Whatever fix will just test for < 1, so your code should be forward-compatible. I h

Re: [fw-general] Zend_Dojo Email validation, checkbox and Submit dojo form question- please?

2008-12-29 Thread vladimirn
There was a few members pointing that this wont work, and i dont have it worked yet. Any new ideas? drj201 wrote: > > I confirm this does not work using capture... I have the same problem. > > Thanks > > > gerardroche wrote: >> >> >> vladimirn wrote: >>> >>> Alert you suggested me to make

Re: [fw-general] Zend_Paginator Negative itemCountPerPage

2008-12-29 Thread Bradley Holt
Matt, Taking a closer look at the documentation, the "All" scrolling style "returns every page." I'm not trying to show every page in the paginator control, I'm trying to have an infinite item count *per page* (which, of course, will make it so I have only one page of items). Like I said, passing

Re: [fw-general] Zend_Paginator Negative itemCountPerPage

2008-12-29 Thread Bradley Holt
Matt, I'll give that a try, thanks! Since I really just want to change the item count per page to "infinite" I was hoping I could simply do this by changing my "count" parameter (like I do with the 25, 50, and 100 selectors) and passing it on as is. I should probably just go ahead and enter a feat

Re: [fw-general] Zend_Paginator Negative itemCountPerPage

2008-12-29 Thread Matthew Ratzloff
Hi Bradley, Use the scrolling style "All" instead. Please see http://framework.zend.com/manual/en/zend.paginator.usage.html for more information. -Matt On Sun, Dec 28, 2008 at 6:40 PM, Bradley Holt wrote: > I was looking for a way to have Zend_Paginator show all of the items. > For example, I h

Re: [fw-general] Zend_Dom out of memory

2008-12-29 Thread Lossoth
sorry, another question: there is any way to use the 'arbitrary attributes' described in the docs? sometime they can be more usefull... -- View this message in context: http://www.nabble.com/Zend_Dom-out-of-memory-tp21125082p21204052.html Sent from the Zend Framework mailing list archive at Nabb

Re: [fw-general] Zend_Dom out of memory

2008-12-29 Thread Lossoth
ok, thanks a precisation: the wrong notation 'div[class="someClass"]' don't gives an error, only a strange increase of memory... can I do something to notificate the error in the docs this problem causes to me a week of delay in my project !!! -- View this message in context: http://www.nabbl

[fw-general] Zend_DB : deletion

2008-12-29 Thread S. Alexandre Lemaire
Hello Folks, Is there a provision in the ->delete( 'table', ... ) to handle IN clauses or subqueries? eg: 1. DELETE FROM table1 WHERE col1 IN ( '1', '2' ) 2. DELETE FROM table1 WHERE col1 IN ( SELECT col2 FROM table2 WHERE col3=? ) Or is it only capable of handling basic equalities? T

Re: [fw-general] Zend_Dom out of memory

2008-12-29 Thread Matthew Weier O'Phinney
-- Lossoth wrote (on Monday, 29 December 2008, 05:51 AM -0800): > > ok, with the sintax > $domDiv = $dom->query('div.someClass'); > it works nice!!! > > but the sintax > 'div[class="someClass"]' > I've used is suggested in the Zend documentation > (http://framework.zend.com/manual/en/zen

Re: [fw-general] Zend_Dom out of memory

2008-12-29 Thread Lossoth
ok, with the sintax $domDiv = $dom->query('div.someClass'); it works nice!!! but the sintax 'div[class="someClass"]' I've used is suggested in the Zend documentation (http://framework.zend.com/manual/en/zend.dom.query.html) in the 'arbitrary attributes' section there is an error in the l

Re: [fw-general] Zend_Dom out of memory

2008-12-29 Thread Matthew Weier O'Phinney
-- Lossoth wrote (on Monday, 29 December 2008, 03:48 AM -0800): > > I'do more test. > I note that is the query() function to a Zend_Dom_Query object that increase > the memory. > I unset() both Zend_Dom_Query and Zend_Dom_QueryResult objects and the > problem persist! > If I comment the query fun

Re: [fw-general] Sample code for Matthew's webinar on Rich UI/Dojo with ZF

2008-12-29 Thread Matthew Weier O'Phinney
-- sktib wrote (on Sunday, 28 December 2008, 08:08 PM -0800): > I just went through the webinar posted by Matthew on "Rich UIs and easy AJAX > with Dojo and Zend Framework" posted here > http://www.zend.com/en/resources/webinars/framework - great webinar. > > There is a link there for presentatio

Re: [fw-general] Zend_Dom out of memory

2008-12-29 Thread Lossoth
I'do more test. I note that is the query() function to a Zend_Dom_Query object that increase the memory. I unset() both Zend_Dom_Query and Zend_Dom_QueryResult objects and the problem persist! If I comment the query functions the memory usage does not increase!! I've no idea $dom = new Zend_Dom_