[symfony-users] Re: if_javascript and link_to_remote

2007-11-04 Thread Nicolas Perriault
2007/11/4, Jorge Laranjo <[EMAIL PROTECTED]>: > link ? > > The href="" is the part that give us the accessible way even if the browser > doesn't know javascript. A nice way to handle this is to make normal link and manage them with javascript for Ajax request thre normal way. Imagine a link and a

[symfony-users] Re: if_javascript and link_to_remote

2007-11-04 Thread Jorge Laranjo
Sure you can have it that way, but my suggestion is: Why not have a link_to_remote (or any other helper) that can be accessibile? That way symfony helps the web making it easier to make AJAX more accessible, don't you think? On 2007/11/04, at 08:23, Nicolas Perriault wrote: > 2007/11/4, Jor

[symfony-users] Different layout file with sfDimensionsPlugin

2007-11-04 Thread Frank Stelzer
Hi, I have a understanding problem with sfDimensionsPlugin. I want to set a dimension, within a preExecute action method, to be able to call a complete different layout.php than the rest does. Example my_module1 -> should always be rendered with /app/templates/layout.php my_module2 -> should

[symfony-users] fillin

2007-11-04 Thread Thierry
my xhtml is nicely valid, however fillin is not working for me. Furthermore it seems to make my xhtml not valid. are there any solutions for this out there? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony

[symfony-users] Re: fillin

2007-11-04 Thread Ian P. Christian
Thierry wrote: > my xhtml is nicely valid, however fillin is not working for me. > Furthermore it seems to make my xhtml not valid. > > are there any solutions for this out there? > google for '[symfony-users] Meta tags losing correct closing tag on POST?' --~--~-~--~~

[symfony-users] Re: Different layout file with sfDimensionsPlugin

2007-11-04 Thread Dustin Whittle
Frank, I am not sure you need to use sfDimensionsPlugin for this. Can you simply do the following: public function preExecute() { if($someCondition) { $this->setLayout('mylayout'); } } sfDimensionsPlugin changes the lookup paths for all files, not just the the layout, it is

[symfony-users] Re: fillin

2007-11-04 Thread Thierry
Found it http://groups.google.com/group/symfony-users/browse_thread/thread/da53afaf1d8765f3/8cd21fdd20998f4b?lnk=gst&q=Meta+tags+losing+correct+closing+tag+on+POST#8cd21fdd20998f4b And this: http://symfoniac.wordpress.com/2007/08/16/getting-sffillinformfilter-to-output-valid-xhtml/ http://trac.sy

[symfony-users] Re: fillin

2007-11-04 Thread Thierry
Got it to work :) Thanks for the help (Browsing source with eclipse made me find my problem) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symfony-users

[symfony-users] Re: fillin

2007-11-04 Thread Carl Vondrick
On Sunday, November 04, 2007, Thierry wrote: > are there any solutions for this out there? I thought this was fixed in 1.0.8? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this gro

[symfony-users] Re: Different layout file with sfDimensionsPlugin

2007-11-04 Thread Frank Stelzer
Thank you for this hint Dustin. I was too much concentrated at the sfDimensionsPlugin, because of some special customer views, i have to build and so i missed the build-in "setLayout" method. That works however perfectly (as i know from former projects, but i forgot about it) - Frank