I'm trying to switch the tagName of a Backbone view based on a condition.
I initially thought I would be able to set a default tagName of say 'div' (I realize this is the default), then in the view's initialize function, check for the condition and change the tagName but this unfortunately didn't work.
Here is my view code (written in coffeescript):
class Test.Views.ListView extends Backbone.View
attributes: {"data-role": "listview"}
className: 'row'
tagName: 'div'
initialize: ->
if @options and @options.device == "mobile"
@template = "/app/templates/mobile/test/test.html"
@tagName = 'ul'
With this code, the tagName does not change, it always remains a div. While the template is switched correctly.
Any help would be appreciated. Cheers!
The view's
el
is set up beforeinitialize
is called. From the fine manual:So all view instances always have an
el
and in particular,el
is created from the view'stagName
beforeinitialize
is called. You're trying to change@tagName
in your constructor butel
already exists so it is too late for a simple@tagName
change to have any effect.You can use
setElement
to change the view'sel
:Something like this:
You could also set
@tagName = 'ul'
if you wanted but it won't matter sincetagName
is only used when instantiating a view. Also,@options
should always be there so you don't have to check it and since you're using CoffeeScript, the accessor variant of the existential operator would be more idiomatic if you wanted to check it anyway:Demo: http://jsfiddle.net/ambiguous/j4mSu/1/
As of backbone 0.9.9 (which did not exist when this question was asked), the tagName field can be a function. This can be used to choose the tagName dynamically when the view is created.
Have you tried using view.setElement(element) directly instead of setting the tag name?