-CC-1805 Ability to edit a show

Initial check-in...still incomplete.
This commit is contained in:
martin 2011-04-12 00:14:26 -04:00
parent eed8c95343
commit b4f1a6b3b0
11 changed files with 616 additions and 77 deletions

View file

@ -33,6 +33,17 @@ function makeAddShowButton(){
});
}
function beginEditShow(data){
//alert (data.entries);
$("#add-show-form")
.empty()
.append(data.newForm);
setAddShowEvents();
openAddShowForm();
}
function makeTimeStamp(date){
var sy, sm, sd, h, m, s, timestamp;
sy = date.getFullYear();