AngularJS For Everyone Tutorial #7 - Using Filters In Angular Templates

preview_player
Показать описание


Support Free Tutorials

The best shared web hosting

Subscribe to Level Up Pro for extra features!

Subscribe to the Level Up Newsletter

To Support Level Up Tuts:

Simple cloud hosting, built for developers.:

HTML is great for declaring static documents, but it falters when we try to use it for declaring dynamic views in web-applications. AngularJS lets you extend HTML vocabulary for your application. The resulting environment is extraordinarily expressive, readable, and quick to develop.
Рекомендации по теме
Комментарии
Автор

Bravo Scott, I'll be looking for more of your AngularJS tuts. Thank you!

ppmservers
Автор

good job (y)
i suggest you to cover 'how to make custom filter' as well :)

perfecttime
Автор

why is 'orderBy: age' correct and not 'orderBy: dirList.age'

BessedDrest
Автор

Great video as always. I just recently found out about Emberjs and it seems similar to Angular. Is there a difference?

jguz
Автор

How would show in ABC's order? Can do like this orderBy: 'name' or orderBy: '-name'? 
however, when I put on directory.js like this
```
dirList.list = [
{name:'Scott', age: 29},
{name:'Brian', age: 30},
{name:'Jen', age: 31},
{name:'Jason', age: 32}
```

the result is
Brian - 30
Jen - 31
Scott - 29

Why not showing Jason on list instead of Scott. I want to rid of Scott. and How do that? 

brianvanvlymenpaws