Tuesday, 26 January 2016

Sending Dynamic Table Data to Server Side

0
Step 1: Add the jquery main file. Step 2:  Add the following Code.  function saveValues( ) {  var tableMatRequire = [];        $('#matReqTable tr').each(function (row, tr) {            tableMatRequire.push({   ...
Read More »

Sunday, 17 January 2016

Making Add Row functionality in Html table using jquery

0
Step 1: Add Jquery download file or use the CDN provided : <script src="https://code.jquery.com/jquery-2.2.0.min.js"></script> Step 2: Make your html table ..  <h3>Add/ Delete Row </h3> <div class="row">  ...
Read More »