Skip to main content

Posts

Showing posts with the label Introduction to Angular 2 - The Fundamentals of Components

Introduction to Angular 2 [A Most Popular JS Framework]

Angular 2 is a most popular framework for developing mobile apps .  It is also for desktop as well mobile applications.   Angular 2 vs. Angular 1 Angular 4 vs. Angular 2 Angular 5 vs. Angular 4 Angular 6 vs Angular 5 The Angular 2 is focusing on data-binding , extensible HTML and on application test-ability but it is still in design and prototyping stage. Angular framework helps us to build client applications in HTML and JavaScript . Angular 2 is so simpler , faster , modular and instrumented design. Angular 2 targeting to modern browsers and it is developing using ES6 ( The ES6 is called ECMAScript version 6 ). It also support to ECMAScript version 5( ES5 ). You don’t worry about the versions of ECMAScript. The compiler manages to the versioning related problems. All the Angular 2 framework code is already being written in ECMAScript 6. The set of modern browsers are 1.      ...

Export ng-grid data to Excel, CSV and PDF format in angularjs

In the 1st Step, we write a plug-In class for exporting ng-grid data to CSV, excel and PDF formats. In this plug-In, we add the export CSV link in footer tab.  Stayed Informed – Angular2 ng-if else Stayed Informed – Angular2  ng-show The name of plug-In class is " pluginNgGridCVSExport " which are give below . ? 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 function pluginNgGridCVSExport(options) {      var self = this ;      self.grid = null ;      self.scope = null ;      self.init = function (sco...