Angular 2 Forms

preview_player
Показать описание
Introduction: Brad Green

Main Talk: Angular 2 Forms
Speaker: David East (Angular Core Contributor), @_davideast

This is a sneak peek of forms in Angular 2. This talk compares the current state of forms in Angular 1 with the upcoming features of Angular 2. We see how forms in Angular 2 provide a powerful degree of expression of our components. We also take a look at the testability of Angular 2 forms. At the end we code up a simple login form using Angular 2 and Firebase.
Рекомендации по теме
Комментарии
Автор

This is literally awesome.. loving how the code looks and the way it works

mastersnick
Автор

awesome revamp from angular 1.x! can't wait for 2.0

paulocesar
Автор

Please normalise sound next time, can hear nothing

HungrysitesRu
Автор

can you guys post a video that shows up how to handle forms with cascading selects? that'd be awesome. thanks

csoftvideo
Автор

I really hope this imperative form declaration style doesn't explode like ext.js with giant chunks of js that replicate dom or too many layers of abstraction for a simple input.

Lordzeus
Автор

Great presentation Thanks Angular2 Team.
I have one request could you please do some videos on nested Components usage in Angular2?

manmeetgupta
Автор

It seems like the verbose conditions for setting a simple attributes like class is still there in template. 

For eg. [class.has-success]

You can see that, if this is a form with lot of nesting, the template will look very dirty and difficult to read

Is there something we can do about it? Is there a better way to do this in Angular2?

jintoppy
Автор

looking forward to the data driven forms !

michael_haessig
Автор

Any tutorial on How to create multi-step form with validation in angular 2 or 4

vaishalibyloor
Автор

Great video! Can't wait for a release. On a side note it would be cool if you checked the video sound before uploading ;).

bradster
Автор

Too difficult to hear. Nice slides anyway. Thanks

Автор

Volume
&& code font size

total: cant hear or seeing nothing...

redZibra
Автор

I'll stick to 1.xx for the moment, it fulfil all my wet dreams.

Kabodanki
Автор

function notBlank(c: Control){
  if(c.value === ""){
    return {
      notBlank: true
    }
  }
  return null;  
}


When the value is empty, returning notBlank as true?!! :-)

jintoppy