29. Angular, Part 2ΒΆ

  1. 29.1. Angular Directives
    1. 29.1.1. Open the Lesson 2 Folder
  2. 29.2. ngFor
    1. 29.2.1. ngFor Syntax
    2. 29.2.2. Try It
      1. 29.2.2.1. What If
      2. 29.2.2.2. Bonus What If
    3. 29.2.3. Check Your Understanding
  3. 29.3. ngIf
    1. 29.3.1. *ngIf Syntax
      1. 29.3.1.1. Logical Operators With *ngIf
      2. 29.3.1.2. What About if/else?
    2. 29.3.2. Try It
    3. 29.3.3. Check Your Understanding
  4. 29.4. Events
    1. 29.4.1. Angular Events
      1. 29.4.1.1. Syntax
  5. 29.5. Responding to User Input
    1. 29.5.1. Change Practice Folder
    2. 29.5.2. Setting Up an Input Box
    3. 29.5.3. Changing the Event
      1. 29.5.3.1. Modifying keyup
      2. 29.5.3.2. Wait for a Click
      3. 29.5.3.3. Now Add a Button
    4. 29.5.4. Summary
  6. 29.6. Events Can Call Functions
    1. 29.6.1. Modify the HTML
    2. 29.6.2. Define the Function
    3. 29.6.3. Tidying Up the Display
      1. 29.6.3.1. Clear the Input Box
      2. 29.6.3.2. Check for Duplicates
    4. 29.6.4. Bonus
    5. 29.6.5. Check Your Understanding
  7. 29.7. Exercises: Angular, Lesson 2
    1. 29.7.1. Starter Code
    2. 29.7.2. Candidates Column
    3. 29.7.3. Candidate Data Column
    4. 29.7.4. Sidekick Image Column
    5. 29.7.5. Selected Crew Column
      1. 29.7.5.1. Clear Crew List
    6. 29.7.6. Bonus Missions
      1. 29.7.6.1. Fine Tune the Buttons
      2. 29.7.6.2. Change the Mission Name
    7. 29.7.7. Bonus Results
  8. 29.8. Studio: Angular, Part 2
    1. 29.8.1. Getting Started
    2. 29.8.2. Review the Starter Code
      1. 29.8.2.1. Editable Mission Name
      2. 29.8.2.2. Crew Array of Objects
    3. 29.8.3. Requirements
      1. 29.8.3.1. Edit Rocket Name
      2. 29.8.3.2. Use *ngFor to Display Crew
      3. 29.8.3.3. Display 1st Mission Status
      4. 29.8.3.4. Add Crew Members
      5. 29.8.3.5. Remove Crew Members
      6. 29.8.3.6. Edit Crew Members
    4. 29.8.4. Bonus Missions
    5. 29.8.5. Sanity Check