0

I want to set the Maximum date for Kendo Date picker in Grid.

I've a column with type "date", so i want to set maximum date for the Datepicker for that column.

HaveNoDisplayName
  • 8,291
  • 106
  • 37
  • 47
Mallikarjuna Rao
  • 213
  • 1
  • 4
  • 17

1 Answers1

2

When you define the schema on the dataSource your grid is bound to, just add in the validation for the date column

validation: { max: new Date('12/1/2006') }

See sample http://jsbin.com/quyoto/1/edit?html,js,output

Robin Giltner
  • 3,057
  • 2
  • 18
  • 26