Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

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...

share|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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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