homeASCIIcasts

Episodes tagged with “forms”

  1. 16

    Virtual Attributes

    Keep your forms flexible by adding virtual attributes to your model. This powerful technique allows you to create form fields which may not directly relate to the database.

    Tags: active-record forms

  2. 17

    HABTM Checkboxes

    Create a list of checkboxes for easily managing a HABTM relationship.

    Tags: views forms

  3. 25

    SQL Injection Other translations: Id

    Attacks via SQL injection are one of the most common ways to attack web applications. Learn how to avoid being a victim of it.

    Tags: security active-record forms

  4. 26

    Hackers Love Mass Assignment

    If you're using mass assigment you're giving complete control to your models to your users. Learn how to protect them in this episode.

    Tags: security active-record forms

  5. 32

    Time in Text Field

    Updating time fields via a series of dropdowns isn't the most elegant way to enter date and time information. Find out how to allow your users to enter dates and time in a text field instead.

    Tags: active-record forms

  6. 165

    Edit Multiple Other translations: Cn

    Select multiple records with checkboxes and edit them all on one form. Find out how to use virtual attributes to update values relatively.

    Tags: forms views routing

  7. 167

    More on Virtual Attributes

    Make use of virtual attributes and callbacks to implement tagging in a blogging application.

    Tags: models forms

  8. 178

    Seven Security Tips Other translations: Cn

    Security is paramount in your Rails applications. Here we show seven commons security flaws from mass assignment to CSRF.

    Tags: security forms views active-record

  9. 184

    Formtastic Part 1 Other translations: Tr

    Formtastic provides a concise way to generate form views. In the first part of this two-part series we use it to generate a simple form and a more complex, customised one.

    Tags: forms plugins views

  10. 185

    Formtastic Part 2 Other translations: Tr

    In this episode we cover some of Formtastic's more advanced features, including its handling of many-to-many relationships, required fields and styling.

    Tags: forms views plugins

  11. 196

    Nested Model Form Part 1 Other translations: Es It Fr Cn

    The accepts_nested_attributes_for method, introduced in Rails 2.3, makes handling multiple models in a form much easier. Find out how to use it in this episode.

    Tags: forms views active-record

  12. 197

    Nested Model Form Part 2 Other translations: Es It Fr

    Add and remove nested model fields dynamically through JavaScript using either Prototype or jQuery.

    Tags: forms views

  13. 198

    Edit Multiple Individually Other translations: Es It

    se checkboxes to edit multiple records in one form, where each one has an individual set of form fields.

    Tags: views forms