Posts

Showing posts with the label Microsoft Visual Studio 2015

Add-Edit-Delete-Duplicate rows in HTML table using AngularJS, jQuery and MVC

Image
My client asked me to build the screen that will allow users to add/modify/delete/duplicate records and it should be in tabular format. In this post I am going to use MVC, angularJS, jQuery and HTML technologies to achieve this. Lest get starts Screen mock-up Add Delete/Edit/Duplicate Update Step – 1 CDN for jQuery , jQuery min & angularJS Step -2 HTML Code < script lang ="javascript" type ="text/javascript">     var baseURL = ' @ Url.Action( "Index" ) ' + "/" ; </ script > < div style =" display : none ; color : red" id ="errContainer">     < div class ="span12" id ="divMessage"></ div > </ div > < table id ="tblFutureBulkUpload" style =" font-size : 12px ; padding-left : 5px ; border-color : Black ; border-width : 1px ; border-style : solid ; border-collapse : collapse...