Mallikarjuna Rao
Mallikarjuna Rao

Reputation: 213

How to set max date of the kendo Date picker in Kendo Grid by using jquery?

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.

Upvotes: 0

Views: 2284

Answers (1)

Robin Giltner
Robin Giltner

Reputation: 3055

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

Upvotes: 2

Related Questions