I have an issue with a data binding inside a directive, which call another directive.
Here is the main directive :
var app = angular.module('app');
app.directive("myMainDirective", function ($http) {
return {
    scope: {
        paramId: '='
    },
    link: function (scope) {
        $http.get('some/url/' + scope.paramId+ '.json'
        ).success(function (data) {
                scope.idFromServer = data;
            });
    },
    template: '<span other-directive id="idFromServer"></span>'
}
});
Here is the other directive :
var app = angular.module('app');
app.directive("otherDirective", ['$http', function(http) {
return {
    template: "<span>{{name}}</span>",
    scope: {
        id: "="
    },
    link: function(scope) {
        http.get('another/url/' + scope.id + '.json').then(function(result) {
            scope.name = result.data.name;
        }, function(err) {
            scope.name = "unknown";
        });
    }
}
}])
And the html code wich call the main directive :
<span my-main-directive param-id="myObject.id"></span>
When calling "other-directive", the "idFromServer" is not bind, and is "undefined", so it results to diplay "undefined".
I'm probably missing something stupid, but I don't see what ... (My piece of code is probabley not the best, I'm pretty new to angularjs, and specially the directives, and I tried a lot of ways to accomplish what I want.)
 
     
     
    