Interactions between components has been more and more of a necessity. In a component, we can easily bind functions and even send data back to the parent within this function (https://morrisdev.com/2016/08/angular-components-with-bound-functions-using-typescript/)However, triggering an event in the child by the parent is a big more convoluted. You can see several options here http://stackoverflow.com/questions/37439300/communicating-events-from-parent-to-child-in-angularjs-components and they are all […]
Getting the Selected Row from a KendoGrid
There are several ways to accomplish this. I’ve got a grid with 2 columns defined: this.gridOptions = { dataSource: this.mydata, columns: [ { field: “office_group_id”, title: “ID” }, { field: “group_name”, title: “Group Name” } ] } } With Kendo Grids, you can get the data from a grid like this: with the javascript event […]
Angular 2 CLI
Using Angular 2 for smaller projects always seemed like overkill. The setup was time consuming and the size of the files was outrageous. Now, there is a new tool that a life saver for all businesses using Angular 2. This new program will create the basic templates for all your angular 2 objects, set them up with webpack, and automatically implement uglyfying and tree-shaking. Not only is it a huge time-saver, but if you are working in groups, the default file structure and naming conventions are great. Now that Angular2 is officially “out”, it is ready for production sites. Now that there is an efficient way to produce them, we will start using it.
- « Previous Page
- 1
- …
- 8
- 9
- 10
- 11
- 12
- …
- 20
- Next Page »