Hi,
I'm trying to understand the basics, I have a dateField, how can I add code to prevent certain dates from being selected, i.e. cannot select any dates previous to today and only start selecting from 4 days ahead - can anyone please help?
Thanks!Code:<script type="text/javascript"> Ext.onReady(function(){ var datetext = new Ext.form.DateField({ emptyText:'Select a Date...', width:190, xtype: 'datepicker', applyTo: 'mydate' }) }); </script>