up vote 3 down vote favorite
1
share [g+] share [fb]

I've tried these

request::is_ajax()

Request::instance()->is_ajax

To no avail. I've noticed in the request class there is a public property $is_ajax but I can't seem to be able to access the property.

What am I doing wrong?

UPDATE

I ended up getting it to work with Request::$is_ajax

link|improve this question

request::is_ajax() should do it, can you provide some more context from which you're calling it? – Mike Sherov Feb 4 '10 at 3:27
feedback

3 Answers

up vote 3 down vote accepted

You could also use this:

if (Request::$is_ajax OR $this->request !== Request::instance())
{ .. }

That way you know that it's an ajax- or ajax-like-request

I use this in my controller base-class so I know whether or not to render the full or partial view.

link|improve this answer
feedback

in case anyone comes back to this, in Kohana 3.1 it is now $this->request->is_ajax() if you are in a controller.

link|improve this answer
1  
+1 - I was just about to come post the same thing! – DondeEstaMiCulo Apr 15 '11 at 9:14
feedback

I ended up getting it to work with Request::$is_ajax

Seems they've gotten rid of the function, and are now relying on a public property.

link|improve this answer
+1 Good to know! – Jonathan Sampson Feb 4 '10 at 4:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.