- Timestamp:
- 12/21/09 17:39:35 (2 years ago)
- Location:
- trunk/phpbms/modules/api
- Files:
-
- 2 modified
-
javascript/pushrecords.js (modified) (2 diffs)
-
push_records_addedit.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/modules/api/javascript/pushrecords.js
r649 r688 42 42 var theForm = getObjectFromID("record"); 43 43 44 //skip validation if cancel 45 var cancelClick = getObjectFromID("cancelclick"); 46 if(cancelClick.value !=0) 47 return true; 48 44 49 if(!validateForm(theForm)){ 45 50 if(e) … … 47 52 return false; 48 53 } 49 50 //skip validation if cancel51 cancelClick = getObjectFromID("cancelclick");52 if(cancelClick.value !=0)53 return true;54 54 55 55 var useCustomDestUuid = getObjectFromID("usecustomdestuuid"); -
trunk/phpbms/modules/api/push_records_addedit.php
r682 r688 55 55 //Form Elements 56 56 //============================================================== 57 $theform = new phpbmsForm( );57 $theform = new phpbmsForm(NULL, "post", "record", NULL); 58 58 $theform->id = $theform->name; 59 59