Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
Objective:
Thai |
---|
วัตถุประสงค์: |
To calculate the duration between 2 given dates
Thai |
---|
เพื่อคำนวณระยะเวลาระหว่าง 2 วันที่กำหนด |
Screenshot:
Thai |
---|
ภาพหน้าจอ: |
Code:
Thai |
---|
รหัส: |
Code Block | ||
---|---|---|
| ||
$('input[name="fromDatepicker"], input[name="toDatepicker"]').change( function(){ d1 = $('input[name="fromDatepicker"]').datepicker('getDate'); d2 = $('input[name="toDatepicker"]').datepicker('getDate'); diff = 0; if (d1 && d2) { diff = Math.floor((d2.getTime() - d1.getTime()) / 86400000); // ms per day } $('input[name=days]').val(diff); }); |
Sample App Download
Thai |
---|
ดาวน์โหลดแอปตัวอย่าง |
View file name APP_calculateDateDiff-1-20160404092232.zip height 250