Hello everybody,
today I want to write few words about AngularJS and js integration.
Recently I had opportunity to cowork with one guy, which is great in knowing javascript, but absolutely hates to learn and apply AngularJS. So, I had task in front of me, to give him sone kind of JS object, which...
Hello everybody,
today I want to write short notice about another useful feature of AngularJS particularly about extend function.
So, according to comment in angular.js file function extend does the following:
/**
* Extends the destination object `dst` by...
Hello everybody,
who follows my blog.
Today I want to share with you hierarchical tree view example which displays data as name implies in hierarchical way. There are plenty of tools that display data in hierarchical way with help of AngularJS, but not so many which has implemented lazy loading....
Hello everybody,
today I want to make some post about how to work with AngularJS select directive from viewpoint of complicated objects.
<select id="type"
class="form-control" name="type" aria-readonly="true"
&...
Hello everybody,
few notes about some details of AngularJS.
1. What is $scope?
$scope is something where we can store information which is needed for page. Also data for changes of which we need to track.
2. How can we react on some changes in $scope? In other words if something at page modified...
Hello everybody,
today another glimpse from the AngularJS world which I can name of how to get something from server.
So, imagine that you see following code in your controller:
var OrderController = function($scope, $http) {
$scope.order = $http.get("/orders/1563");
}
and no...