smashing
smashing copied to clipboard
Pass Array of data Jobs(rb) file to Dashboard(erb) file ?
Hai
Dashboard (erb file) :
<%
leaderboardid = [
'lb_partner1',
'lb_partner2',
'lb_partner3'
]
%>
<% leaderboardid.each do |name| %>
<li data-row="1" data-col="1" data-sizex="2" data-sizey="4">
<div data-id="<%= name %>" data-view="LeaderBoard"></div>
</li>
<% end %>
My requirement is leaderboardid array passing from jobs(rb) file ?
Maybe you can bind the array on a widget and change the DOM (add more nodes) dynamically within the Widget class during onData(). I have seen this here.