Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
To localize the Date Picker field to a specific language
Thai |
---|
เมื่อต้องการแปลฟิลด์ตัวใช้เลือกวันที่เป็นภาษาเฉพาะ |
The example below uses "zh-CN".
You can download the i18n jQuery library for Date Picker from http://code.google.com/p/listr/source/browse/#svn%2Ftrunk%2Flistr%2Flib%2Fjs%2Fui%2Fi18n.
Thai |
---|
ตัวอย่างด้านล่างใช้ "zh-CN" คุณสามารถดาวน์โหลดไลบรารี่ i18n jQuery สำหรับตัวใช้เลือกวันที่ได้จาก http://code.google.com/p/listr/source/browse/#svn%2Ftrunk%2Flistr%2Flib%2Fjs%2Fuis%2Fuis |
Code Block |
---|
<script type="text/javascript" src="http://listr.googlecode.com/svn/trunk/listr/lib/js/ui/i18n/ui.datepicker-zh-CN.js" ></script> <script type="text/javascript"> $(document).ready(function(){ $.datepicker.setDefaults($.datepicker.regional['zh-CN']); }); </script> |