table of content

Author

Ajay KumarAt CodeStore, our team leverages my expertise in full-stack engineering—specializing in .NET, NodeJS, AngularJS, and more—to solve complex problems and drive technological innovation. As CEO, I've been instrumental in advising businesses on digital strategies, embodying a commitment to successful technology integration.

Build a ToDoApp using AngularJS

ToDoApp using AngularJS Welcome to my blog on AngularJS, Here I will develop a “ToDo App” using angular.

Technologies to be used

  1. HTML
  2. Bootstrap
  3. AngularJS
  4. toastr
  5. Kendo UI

So Let’s Start, Please follow the steps below.

STEP 1: Create new project

STEP 2: Select ASP.Net Web Application Named TODoAppAngularJS.

STEP 3: Select Empty Template.

STEP 4: You will see the below screen now.

STEP 5: Add New HTML Page.

STEP 6: Now add a HTML file and name it “index.html”

Step 7: Download AngularJS library from https://angularjs.org/ and reference it.

Step 8: Now Add a JavaScript file to do code in it named “App.js”

Now Let’s Code.
First of All, We will design our UI like below image:

So now add all reference files and libraries.

<div

class=“container”>

 

<div

class=“row Gheader”>

class=“text-center”>*** A ToDo App ***

<div

ng-controller=“toDoCtrl”> <div

 

class=“row”>

class=“panel panel-primary”>

class=“panel-heading”> CREATE TASK

<div

class=“panel-body”> <div

 

class=“row”>

class=“col-md-4”> TASK type=“text” ng-model=“task” placeholder=“Task Name*” class=“form-control”/>

<div

class=“col-md-4”> TIME class=“form-control” kendo-date-time-picker ng-model=“time” k-ng-model=“time” style=“width: 100%;”/>

<div

class=“col-md-4”> DONE BY type=“text” ng-model=“doneBy” placeholder=“Done By*” class=“form-control”/>

<div

class=“row” style=“margin-top: 2%;”> <div

 

class=“col-md-8”>

<div

class=“col-md-2”>

<div

class=“col-md-2”>

<div

class=“row”>

class=”table table-bordered table-hover table-responsive”>TASKTIMEDONE BYng-repeat=”task in taskList”>{{task.task}}{{task.time}}class=“glyphicon glyphicon-user”>  {{task.doneBy}}

<div

class=“row Gfooter”> <div

class=“col-md-6”> style=“font-family: verdana;” class=“text-center”>Codestore Technologies Pvt. Ltd. (NOIDA, U.P)<div

class=“col-md-6”>

style=“font-family: verdana;” class=“text-center”> Developed By: Gopal Sharma (Software Engineer)

Now write code in “App.js” file to make it fully functional.

If you are planning to develop an app, get in touch with CodeStore! Share your queries with us at sales@codestoresolutions.com or call us at INDIA: +91 95997 20600 | UK: +44 7342 441487

Author

Ajay KumarAt CodeStore, our team leverages my expertise in full-stack engineering—specializing in .NET, NodeJS, AngularJS, and more—to solve complex problems and drive technological innovation. As CEO, I've been instrumental in advising businesses on digital strategies, embodying a commitment to successful technology integration.
Go to Top