Changeset 17481


Ignore:
Timestamp:
01/04/14 15:43:42 (11 years ago)
Author:
tose
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/js/function.js

    r17480 r17481  
    22// June 16, 2013
    33
     4var currentDate;
     5
    46function GetDate(d,m,y)
    57{
     8        currentDate = y+'-'+m+'-'+d;
     9};
     10
    611        $('document').ready(function(){
    712                        var Gdate = y+'-'+m+'-'+d;
    8 
    913                        $('#save').click(function(){
    1014                                if($('#save').val()=='SAVE')
    1115                                {
    12                                         Gdate = y+'-'+m+'-'+d;
     16                                        Gdate = currentDate;
    1317                                        alert("Save: " + Gdate);
    1418                                        $('.datalisting').each(function(){
     
    1721                                                countchild = $(this).find(".tr").length;
    1822                                                        $(this).find(".tr").each(function(){
    19                                                                
    2023                                                                get_measure   = $(this).find(".measure").val();         
    2124                                                                get_source    = $(this).find(".source").val();         
     
    2831                                else
    2932                                {
    30                                         Gdate = y+'-'+m+'-'+d;
     33                                        Gdate = currentDate;
    3134                                        alert("Update: " + Gdate);
    3235                                        GetDelete(Gdate);
     
    8891                        };
    8992        });
    90 };
Note: See TracChangeset for help on using the changeset viewer.