I have two files. .rb(with ruby code) and .erb(HTML file with some ruby script). I am calling a ruby fuction in .rb from .erb.
.erb
<a href="<%= url_for :action => :showProducts(i) %>">Click here</a>
.rb
def showProducts(param)
//Some code
end
Problem:
I am able to call a function without passing parameters to it. But as and when I pass parameters to function and then call it, I receive an error. I know this is the incorrect way to call a parametrized function from .erb. Please help with the correct way of calling a parametrized function from HTML.
Thanks,
Nitish