Re: [fw-general] Custom Filter Question

2009-06-19 Thread Deepak
On Fri, Jun 19, 2009 at 12:36 AM, lightflowmark1...@lightflowinterrupted.com wrote: The filter works fine. $value=z/z; echo str_replace(/, ,, (string) $value); // outputs z,z It's not being run, or you're testing the value before it has run. Impossible to tell from the code you've shared

Re: [fw-general] Custom Filter Question

2009-06-19 Thread lightflowmark
The form's filters validation do not act on the parameters in the request. THe request needs to be passed to the form, which populates it's values, and then tries to validate it, running the filters the validators: http://framework.zend.com/manual/en/zend.form.quickstart.html Do something

Re: [fw-general] Custom Filter Question

2009-06-19 Thread Deepak
On Fri, Jun 19, 2009 at 6:34 PM, lightflowmark1...@lightflowinterrupted.com wrote: The form's filters validation do not act on the parameters in the request. THe request needs to be passed to the form, which populates it's values, and then tries to validate it, running the filters the

Re: [fw-general] Zend_Dojo_Form and dojox.grid

2009-06-19 Thread eirikb
Hi Any update on this. I am trying to use the dojox.widget.ColorPicker in a manner similar to this and am very stuck. Have no problems adding the ColorPicker directly to the view script, but would really like to get som insight into how I could use it as a normal zend_dojo_form_element and add

Re: [fw-general] Custom Filter Question

2009-06-19 Thread Deepak
After going through all these complex steps, I think I have answered my own question. $srchstr = str_replace(/, ,, (string) $request-getParam('srchstr')); solved all my apache mod_rewrite problem without implementing Filters. I guess it is not possible to implement Filter while using GET and

[fw-general] setFallbackAutoloader(true) causing module boostraps not load

2009-06-19 Thread Marian Meres
Hi, I ran into one issue with the setFallbackAutoloader(true). I have modular app with usual directory structure (via Zend_Tool), with module test. Test_Boostrap class is located as usual in modules/test/Bootstrap.php. Works perfect. But with the fallbackAutoloader enabled (snippets from

Re: [fw-general] Zend Paginator - Two paginators in one action

2009-06-19 Thread Matthew Ratzloff
Check the issue tracker. -Matt On Fri, Jun 19, 2009 at 8:34 AM, Simeon Goranov sai...@thefreeart.comwrote: Hello, I'm trying to create an action (page) with two paginators on it, so it should be possible to use both paginators. Do you have any idea (sample code) how to do it ? Thanks in

Re: [fw-general] setFallbackAutoloader(true) causing module boostraps not load

2009-06-19 Thread Matthew Weier O'Phinney
-- Marian Meres marian.me...@gmail.com wrote (on Friday, 19 June 2009, 05:28 PM +0200): I ran into one issue with the setFallbackAutoloader(true). I have modular app with usual directory structure (via Zend_Tool), with module test. Test_Boostrap class is located as usual in

[fw-general] Zend_Form_Element_MultiCheckbox

2009-06-19 Thread Brooks, Rob A
I'm pretty confused about this element ... My form code: $career = new Zend_Form_Element_MultiCheckbox('career_name'); $career-setLabel('Careers'); $career-setMultiOptions($careers) -setDecorators(array( 'ViewHelper', 'Errors', array(array('elementTable' = 'HtmlTag'), array('tag' = 'table')),

Re: [fw-general] setFallbackAutoloader(true) causing module boostraps not load

2009-06-19 Thread Marian Meres
Hello Matthew, On Fri, Jun 19, 2009 at 7:41 PM, Matthew Weier O'Phinneymatt...@zend.com wrote: -- Marian Meres marian.me...@gmail.com wrote (on Friday, 19 June 2009, 05:28 PM +0200): I ran into one issue with the setFallbackAutoloader(true). I have modular app with usual directory structure

[fw-general] New component proposal ready for review (Zend_Olap)

2009-06-19 Thread Jeremy Giberson
Hey folks, Miscellaneous spots on the proposal wiki suggest alerting the mailing list when a component is ready for review. I've pushed Zend_Olap - Jeremy Giberson proposal into the ready for review section and welcome all comments. I'd especially appreciate feedback from members of the

Re: [fw-general] Using both AjaxContext and contextSwitch together.

2009-06-19 Thread afx114
I have figured this out, thanks to this post: http://framework.zend.com/issues/browse/ZF-3690 http://framework.zend.com/issues/browse/ZF-3690 The workaround is to also add an 'html' context to the contextSwitch: $contextSwitch-addContext('html', array()); afx114 wrote: I'm using

[fw-general] function to render a view script by passing a full path to it's location

2009-06-19 Thread Vadim Gabriel
function to render a view script by passing a full path to it's location, Does something like this exists? -- Vincent Gabriel. Lead Developer, Senior Support. Zend Certified Engineer. Zend Framework Certified Engineer. -- http://www.vadimg.co.il/

[fw-general] Template theme for MVC in Zend Framework

2009-06-19 Thread marcelloraffaele
I would ask if someone know if exists some Template theme for MVC in Zend Framework. I'm using MVC and my result are very good. I prefer create all my site and don't use for example cms like joomla. But i loose a lot of time to implment my view. I hope some one can help me and i hope you can

Re: [fw-general] function to render a view script by passing a full path to it's location

2009-06-19 Thread Matthew Weier O'Phinney
-- Vadim Gabriel vadim...@gmail.com wrote (on Friday, 19 June 2009, 10:30 PM +0300): function to render a view script by passing a full path to it's location, Does something like this exists? You can pass a full path to render() already... -- Matthew Weier O'Phinney Project Lead|

Re: [fw-general] function to render a view script by passing a full path to it's location

2009-06-19 Thread Vadim Gabriel
Well it doesn't work. if i pass a full path and the file exists for some reason it searches it in the default views/scripts/ directory which i don't have. And then an exception is raised that the view was not found. Although i configured the paths. On Fri, Jun 19, 2009 at 11:01 PM, Matthew Weier

Re: [fw-general] Template theme for MVC in Zend Framework

2009-06-19 Thread Chris Tankersley
Not really sure if this is what you are looking for, but what I do is just set my layout path to wherever my theme is stored (which I keep in a database entry). Layout: /application /library /public /themes /mytheme /mytheme2 layout.phtml