text_field_with_auto_complete哪些注意点

阅读更多
我在应用text_field_with_auto_complete时弹出式窗口就是打不开,
写法是这样的,在view窗口有代码:
<%= text_field_with_auto_complete :lesson, :title,:size=>'12' %>
在对应的controller中写有
    def auto_complete_for_lesson_title
      search = params[:lesson][:title]
      @lessons = Lesson.search(search) unless lesson.blank?
      render :inline => '<%= auto_complete_result @lessons, :title %>'
    end

还有哪个地方缺东西吗?
我看了代码执行过程,代码触发了controller中的auto_complete_for_lesson_title,但就是无法显示!

希望谁给个帮助或分析一下!

你可能感兴趣的:(text_field_with_auto_complete哪些注意点)