I'm following railscast #258 and using the following snippet in my view to add the JQuery token input field to my form:
<%= form.input :category_tokens, :label => "Categories", :input_html => { "data-pre" => @company.category_tags.map(&:attributes).to_json } %>
All works well except for error validation. Whenever I leave the token input field blank, it doesn't let me submit the form as expected but it fails to display any error messages on the webpage. The rest of the fields seem to function as normal.
Within Chrome's Javascript console, the only error message I see is An invalid form control with name='company[category_tokens]' is not focusable.
Here's the HTML snippet from the live page:
<li class="string input required stringish" id="company_category_tokens_input"><label for="company_category_tokens">Categories<abbr title="required">*</abbr></label><input data-pre="[]" id="company_category_tokens" name="company[category_tokens]" required="required" size="50" type="text" />
How can I modify the form (preferably within the constraints of formtastic) to display the form validation errors properly?
Many thanks,
-Emzy