smashing icon indicating copy to clipboard operation
smashing copied to clipboard

Pass Array of data Jobs(rb) file to Dashboard(erb) file ?

Open manikandanselva opened this issue 5 years ago • 1 comments

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 ?

manikandanselva avatar Apr 12 '19 05:04 manikandanselva

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.

witchi avatar Apr 15 '19 14:04 witchi