Re: [fw-general] Why use resources.view.basePath = APPLICATION_PATH "/views"?

2010-05-15 Thread Mon Zafra
That method has absolutely no relation at all to the view basepath. It is also useless since you're not really doing anything at all with the request object you instantiated. The front controller already lazily loads the same class during dispatch. The reason your application still works even with

[fw-general] Why use resources.view.basePath = APPLICATION_PATH "/views"?

2010-05-15 Thread Mike A
Why use resources.view.basePath = APPLICATION_PATH "/views" in an application configuration file? Placing the following code in global Bootstrap.php seems to do the same things - and more: protected function _initBaseUrl() { $this->bootstrap("frontController"); $front=$this->ge

[fw-general] Re: add new virtual host in zend server

2010-05-15 Thread dmitrybelyakov
It's located under /usrl/local/zend/apache2/conf/extra :) -- View this message in context: http://zend-framework-community.634137.n4.nabble.com/add-new-virtual-host-in-zend-server-tp2217695p2218167.html Sent from the Zend Framework mailing list archive at Nabble.com.

[fw-general] Mootools Form Validation

2010-05-15 Thread Meroe Meroe
Anyone know how to use the default zend framework validation with mootools Ajax for submit? I don't want to use a custom mootools validation such as formcheck or the like. Any thoughts? examples?

Re: [fw-general] How can change my registred mail adress for thismailing list ?

2010-05-15 Thread d.fohl
Thank you Matthew, to be always here for us. Le ven 14/05/10 17:32, "Matthew Weier O'Phinney" matt...@zend.com a écrit: > -- d.f...@df- > info.com info.com> wrote (on Friday, 14 May 2010, 04:33 PM +0200): > > How can change my registred mail adress for this > mailing list ? > > > I'd like fw-g

[fw-general] add new virtual host in zend server

2010-05-15 Thread shahrzad khorrami
hi dears, How can I add new virtual host in zend server?in where? in which path in zend server, I can find sites-available/default (like in apache2) and add Virtual Host...?? Thanks, Shahrzad

Re: [fw-general] grouped Zend_Form text elements

2010-05-15 Thread Aleksey Zapparov
Hello, In this case (CSS tricks) IMHO it's better leave elements with standard decorators as-is and mangle them with small JavaScript instead. But in fact, both ways are not very far from (or even btter than) simply ViewScript usage. If you don't want to use ViewScript, IMHO you better create your

Re: [fw-general] grouped Zend_Form text elements

2010-05-15 Thread Philip Iezzi
Great, Eugene, thanks a lot! That's how I did it: $city->removeDecorator('Label'); (there is no DtDdWrapper on a standard Zend_Form_Element_Text, so I just removed the "Label" (dt) decorator, the dd tag comes from the "HtmlTag" decorator) Form element output: Zipcode / City

Re: [fw-general] create tree from arrays

2010-05-15 Thread shahrzad khorrami
Thankss Aleksey Zapparov :) it works grea! merc