An important aspect of any web application is displaying messages to users based on events. I like to use modals for this. Angular2’s Bootstrap components provide some basic functionality to facilitate the creation of Modal Dialogs.
Ramblings of a software developer..
posted on January 19, 2017 by long2know in angular
An important aspect of any web application is displaying messages to users based on events. I like to use modals for this. Angular2’s Bootstrap components provide some basic functionality to facilitate the creation of Modal Dialogs.
posted on January 10, 2017 by long2know in angular, plunker
It’s been a while, but I had some time today to work a bit more on my Angular2 multiselect implementation. The next aspect that I wanted to implement is validation.
posted on November 22, 2016 by long2know in angular, plunker
Yesterday I started working on a conversion of my Angular 1.x multiselect dropdown to Angular 2.x In a short amount of time, I think I’ve made pretty good progress. It’s not complete, but I was happy to be able to quickly get something comparable to my Angular 1.x directive.
posted on November 21, 2016 by long2know in angular, plunker
As of late, I’ve really been getting more and more into Angular. For me, the important aspects are learning how to do what I’ve done with v1.x in the newer framework. This involves a great deal of understanding of the difference between v1.x and v2.x. Since one of my most popular Angular 1.x directives is the Multiselect Dropdown w/ Checkboxes, I decided to tackle converting it in incremental steps. From the top, the first piece of significant functionality is filtering the list of items.
EDIT: Be sure to check out my newer article on Angular Pipes.
posted on November 21, 2016 by long2know in angular, JavaScript, plunker
In my previous post, I put together a little demo showing how to detect if capslock is depressed and how to warn the user. To make this a bit more useful and reusable, I rolled it into an Angular 1.x directive.
posted on November 8, 2016 by long2know in angular
Recently, I was reading an article about modifying data on a response in Angular. With my previous posts dealing with TimeZones and such, it made me curious if I could also transform my data on each POST in Angular.
posted on November 1, 2016 by long2know in angular, plunker
The Angular2 team has done a good job with their newish Bootstrap Angular2 components. I’ve been playing with them for a while.
posted on November 1, 2016 by long2know in angular, ASP.NET, JavaScript, WebApi
In an application that I’m currently working on, that deals with Sales data, there are instances when I need to apply date comparisons relative to a user’s local time. This is an interesting problem with which to deal.
posted on October 10, 2016 by long2know in angular
I’ve made quite a few posts detailing the use of ui-router. These posts include general menus, tabs, and other “knowledge” of state mechanisms. The one thing missing though is maintaining state, or route, data.
posted on October 3, 2016 by long2know in angular, plunker
A while back, I needed a simple way to create a table with parent/child details in Angular. ng-repeat has some handy little known features to make creating this type of table easy.