Loading ...

Angular 2 Property Binding

Hello everybody, today I want to write few words about binding in AngularJS 2. There are two ways of making one way binding: element property binded to template expression property interpolation I've described it with following picture: Two-way Binding <input [(ngModel)]='property'> And...

Ionic2 Running Apps

Hello everybody, today I want to document few usefull commands which are usefull in ionic 2. Add platform: If you need your app to be able to execute on some platform you can use following command: ionic platform add xxx Where xxx stands for name of platform. It can have following values: windows...

What Is Service In Angularjs 2

Hello everybody, today I want to write few words about AngularJS 2 services, or if to be more specific what is Service in angular at all? If to speak very very shortly: Service - it's a class with focused purpose independent from any particular component. It can be caching purpose, or logging pur...

Binding Modes In Xaml

Hello everybody, today I want to write few words about binding in XAML. So there are four ways of binding in XAML. One way Two way One way to source One time   If to speak about them more, then here it goes additional definitions: OneWay : source property updates target property TwoWay: s...

Basic Elements In Xaml

Hello everybody, today I want to write few words about basic elements in XAML.   DependencyObject This class is next in inheritance level in XAML after object. DependencyObject gives needed properties for representing something that participates in dependency property system. Mostly nee...

What Is Angularjs 2 Component

Introduction Here I want to write of how I grasped what is Angular 2 component building blocks   Hello everybody, I don't know about you, but when I first opened AngularJS 2 component source code, I've become puzzled with question mark of what is AngularJS 2 component? Imagine, that you look...

Security Tokens

Hello everybody, today I want to write a few words about security tokens in OAuth2.  So, first of all I'd like to point that security tokens wasn't needed for corporate world. When I say corporate world, I mean networks like B2B, or B2E or something, that has strong system administration arm...