Search Date Between


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. {
  2. layout: 'column',
  3. width: 350,
  4. items: [{
  5. layout: 'form',
  6. columnWidth: .65,
  7. items: [
  8. new Ext.form.DateField({
  9. fieldLabel: 'Tanggal Retensi',
  10. name: 'tanggalretensimulai',
  11. format: 'd/m/Y',
  12. labelWidth: 120,
  13. width: 94,
  14. allowBlank: true
  15. })]
  16. }, {
  17. layout: 'form',
  18. columnWidth: .35,
  19. labelWidth: 20,
  20.  
  21. items: [
  22. new Ext.form.DateField({
  23. fieldLabel: 's/d',
  24. name: 'tanggalretensisampai',
  25. format: 'd/m/Y',
  26. width: 94,
  27. labelSeparator: '',
  28. allowBlank: true
  29. })]
  30. }]
  31. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.