cmc-sales/webroot/js/addjob.js
2011-01-11 19:52:52 +11:00

35 lines
480 B
JavaScript
Executable file

/**
* file: addjob.js
*
*
*/
$(function() {
$('#JobDateOrderReceivedDisplay').datepicker({
showButtonPanel: true,
dateFormat: 'DD d MM yy',
altFormat: 'yy-mm-dd',
altField: '#JobDateOrderReceived'
});
$('#JobDateOrderSentToCustomerDisplay').datepicker({
showButtonPanel: true,
dateFormat: 'DD d MM yy',
altFormat: 'yy-mm-dd',
altField: '#JobDateOrderSentToCustomer'
});
});