I’m hoping there are some markaby users reading this list who would be willing to help me out. I’m having trouble getting drop select fields to work in a markaby form. For example:
If I do this in .rhtml it works.
@customers = [[“One”,“1”],[“Two”,“2”]]
<%= select ‘customer’, ‘current’, @customers %>
But, when I translate it to markaby, I get a 'unable to stringify key . . ’ error.
select_tag ‘customer’, ‘current’, @customers
I’ve tried changing the select_tag to select. That shows an empty select box.
Thanks, in advance.