Thanks Perez. What i do now is that i write it in application helper and include it in application controller.
On Nov 29, 9:45 am, Fernando Perez <[EMAIL PROTECTED]> wrote: > Mr. Bless wrote: > > HI guys where should i have to write the method that it is accessible > > from any controller and any views. When i write the method in > > application controller then it is accessible in controller only and > > when i write it on application helper it is accessible on views only. > > I even tried to write it as module in the lib and included in the > > application controller, in that case it becomes inaccessible in views. > > Write the code in ApplicationController, declare it as protected. Then > to make it accessible to views, still in application.rb, use the method: > helper_method(your_method_name), and voilà. > -- > Posted viahttp://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

