Module Kwartz::Helper::ActionViewHelper
In: lib/kwartz/helper/rails.rb

helper module to add helper methods ‘start_link_tag()’ and ‘start_remote_link_tag()’.

Methods

Public Instance methods

anchor(options={}, html_options=nil, *parameters)

Alias for start_link_tag

anchor_remote(options={}, html_options={})

return ’<a href="…">’ start tag.

ex.

  start_link_tag :action=>'show', :controller=>'user', :id=>1
  #=> "<a href=\"/user/show/1\">"

[Validate]