Top "Angularjs-components" questions

Component is a special kind of directive that uses a simpler configuration which is suitable for a component-based application structure.

AngularJS 1.5+ Components do not support Watchers, what is the work around?

I've been upgrading my custom directives to the new component architecture. I've read that components do not support watchers. Is …

angularjs angularjs-directive angularjs-scope angularjs-components angularjs-1.5
angularjs 1.5 component dependency injection

this may sound newb, but I have been following this tutorial for angularjs component. I am new to components and …

angularjs angularjs-directive angularjs-components
How to watch component binding change using Angular component

How can I listen to angular component binding change and perform actions? angular.module('myapp') .component('myComponent', { templateUrl: 'some.html', …

javascript angularjs typescript angularjs-components
Purpose of $element and $ attrs in component controllers with angularJS components 1.5

I am working on getting up to speed with 1.5 angular components. I have been following todd Motto's videos to get …

angularjs dom angularjs-components
Pass object to component

I have created a component that needs to have a reference to the object for which the component was created. …

angularjs angularjs-directive angularjs-components
What is best practice to create an AngularJS 1.5 component in Typescript?

I am experimenting with the .component() syntax in Angular 1.5. It seems that the latest fashion is to code the controller …

angularjs typescript angularjs-components
What is a component in AngularJS?

I was doing some reading about directives and was wondering what the distinction was between a directive and a component, …

angularjs angularjs-components
What is the best way to pass functions between inner components in AngularJS 1.5?

I was wondering what is the best way to pass functions down through 2 or more levels of components? There's no …

javascript angularjs angularjs-compile angularjs-components
How to handle $ctrl. in AngularJS?

I have a Methode from an API. It returns a promise which resolves to an $ctrl(?) object. This objects should …

html angularjs angularjs-scope angularjs-components cumulocity
In Angular 1.5, how to bind an attribute component as boolean?

I would like to know if in Angular 1.5, when you use components, there is a simple way to bind an …

angularjs angularjs-directive binding components angularjs-components