Ok, I have a simple JQuery plugin that when applied to a div will neatly load all the images within that div using a preloader image. This works fine.
However, in Backbone i'm appending data from JSON to a element after the page has been loaded. Therefore the code below won't work.
$(document).ready( ->
$("#theList").preloader()
)
So I need to put the "$("#theList").preloader()" in my render function, after my list is generated..
class HomeView extends Backbone.View
constructor: ->
super
initialize: ->
@isLoading = false
events: {
"click #nextPage": "nextPage"
"click #prevPage": "prevPage"
}
template: _.template($('#home').html())
theListTemplate: _.template($('#theList').html())
render: ->
$(@el).append(@template)
@loadResults()
$("#theList").preloader() #<----------------- DOESN'T WORK NOW
loadResults: () ->
@isLoading = true
Properties.fetch({
success: (data) =>
#Append properties to list
$('#theList').append(@theListTemplate({data: data.models, _:_})).listview('refresh')
error: ->
@isLoading = false
alert('Unable to load information')
})
However, now the line of code is within a Backbone View/Model/Controller or whatever, it doesn't work..
For reference I load my application like so..
$(document).ready( ->
console.log('document ready')
app.AppRouter = new AppRouter()
Backbone.history.start()
)
Any help would be much appreciated! Thanks.