Displaying 2 results from an estimated 2 matches for "flight_nam".
Did you mean:
flight_name
2012 Sep 22
1
formtastic does not save at all
...e %>
<div id="destinationCity">
<%= render :partial => ''destination'' %>
</div>
<div id="airlineCompany">
<%= render :partial => ''airline'' %>
</div>
<div id="flight_name">
<%= render :partial => ''flight_name'' %>
</div>
<%= f.input :day_departure, :as => :date_select, :hint => ''Select a
date'',
:start_year => Time.now.year,
:label => "Departure date" %>...
2012 Sep 10
2
suggestion for user-friendly input: typeahead
Rails 3.1.3
I am hoping some of you may give me suggestions about user input helper
methods.
I have a large set of model, Flight, and its fields are
airline, flight_name, departure, destination
As you can imagine, the flight data will be very large; it could be
thousands if it is international.
I will ask users to input the desired flight plan, and it will be
crucial if the users make mistakes when typing in the forms. So,
naturally I need some sort of input he...