Re: [fw-general] How to inject script using headScript from a custom view helper?

2008-07-31 Thread Matthew Weier O'Phinney
-- derek fong <[EMAIL PROTECTED]> wrote (on Thursday, 31 July 2008, 02:47 PM -0400): > Looks like I spoke too soon. :( The reason it worked for me before was > because I still had another call to the same helper in my controller, which is > what was actually causing the headScript call to work as

Re: [fw-general] How to inject script using headScript from a custom view helper?

2008-07-31 Thread derek fong
Hi, Looks like I spoke too soon. :( The reason it worked for me before was because I still had another call to the same helper in my controller, which is what was actually causing the headScript call to work as expected, but since removing that from my controller, headScript will still

Re: [fw-general] How to inject script using headScript from a custom view helper?

2008-07-31 Thread derek fong
Excellent, thanks! Worked like a charm. =) -f- On 31 Jul 2008, at 13:52, Taco Jung wrote: Hi, Use the following function in your custom view helper to get the global view: public function setView(Zend_View_Interface $view){ $this->view = $view; } Then using $this->view->headScript()

Re: [fw-general] How to inject script using headScript from a custom view helper?

2008-07-31 Thread Taco Jung
Hi, Use the following function in your custom view helper to get the global view: public function setView(Zend_View_Interface $view){ $this->view = $view; } Then using $this->view->headScript() in your helper will work. Regards, TJ. On Thu, Jul 31, 2008 at 7:41 PM, derek fong <[EMAIL PROTEC

[fw-general] How to inject script using headScript from a custom view helper?

2008-07-31 Thread derek fong
Hi, I have a custom view helper from which I'd like to inject some code into the head of my page using the Zend_View_Helper_HeadScript helper. I have the following code in my custom helper: if (!$this->init) { $this->view->headScript()->appendFile('/assets/js/tree.js'); } However, whi