Date.js 438 B

123456789101112131415161718
  1. Ext.define('Ext.theme.material.panel.Date', {
  2. override: 'Ext.panel.Date',
  3. config: {
  4. headerFormat: 'D, M j',
  5. hideCaptions: false,
  6. hideOutside: true,
  7. navigationPosition: 'caption',
  8. selectOnNavigate: false,
  9. showTodayButton: false,
  10. splitTitle: true,
  11. titleAnimation: false,
  12. tools: {
  13. previousYear: null,
  14. nextYear: null
  15. }
  16. }
  17. });