[Rails] .rjs template doesn't load?

Nick Stuart nicholas.stuart at gmail.com
Mon Feb 6 20:40:34 GMT 2006


I'm not sure how well RJS templates work with partials. I use Toms
route myself and will have a complete rjs template for methods like
create or update which would previously not have any.

Try making a create.rjs and have a flag in there like Tom suggested
and see what happens. Skip the partial for now (at least on the xhr
requests) to see if it helps.

-Nick

On 2/6/06, Joshua Gitlin <josh at digitalfruition.com> wrote:
> Tom,
>
> That would work well, problem is, I can't make my action render
> *anything* besides :text...
>
> -Josh
>
> -----------
> Due to the recent increase in spam and falsely sent email, I now PGP
> Sign all of my outgoing mail to prove my identity. This means that
> you will see an attachment called "PGP.sig" with this message. This
> attachment can be used to prove that I am who I say I am. If you are
> not familiar with PGP, you can safely ignore it. For more
> information, please visit http://www.pgp.com/ or http://www.gnupg.org/
>
> On Feb 6, 2006, at 2:50 PM, Tom Wilcoxen wrote:
>
> > Josh,
> >
> > I have a similar requirement, but addressed it a little differently. I
> > don't know which is better. I set an instance variable in my
> > controller called @error and fill it with a message if the action
> > fails. Then in my .rjs I do:
> >
> > if @error
> >   page.show 'ajax-error'
> >   page.replace_html 'ajax-error', @error
> > else
> >   page.hide 'ajax-error'
> >   page.replace_html 'my-div-name', :partial => 'mypartial'
> >   page.visual_effect :highlight, 'my-div-name', :duration => 1.5
> > end
> >
> > -Tom
> > _______________________________________________
> > Rails mailing list
> > Rails at lists.rubyonrails.org
> > http://lists.rubyonrails.org/mailman/listinfo/rails
>
>
>
> _______________________________________________
> Rails mailing list
> Rails at lists.rubyonrails.org
> http://lists.rubyonrails.org/mailman/listinfo/rails
>
>
>
>


More information about the Rails mailing list