Is there any shortcut for:

link_to 'title', path, 'data-type' => :html

I thought :type=>:html would work, much as :remote=>true transforms to data-remote='true', but not supported.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Yes:

link_to 'title', path, data: { type: :html }

small edit

It comes from the tag helper: http://api.rubyonrails.org/classes/ActionView/Helpers/TagHelper.html#method-i-tag

Its maybe not a shortcut in your case but can be very handy if you have to set multiple data-attributes:

link_to 'title', path, data: { first_name: @user.first_name, 
                               last_name:  @user.last_name,
                               # etc. }

But no, no type: :html, sorry...

link|improve this answer
Thanks, I'll use a helper method for now to default this setting along with remote: gist.github.com/1513760. – mahemoff Dec 23 '11 at 9:54
feedback

Your Answer

 
or
required, but never shown

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