I'm attempting to do a confirmation when a user changes a date using the date picker. Is it possible to get the previous value from the object model or will I need to roll my own?
相关问题
- Foreign key column sorting
- Kendo UI bind drop down value from PopupEditor
- How to change color of row based on particular col
- Kendo UI for MVC Grid How do I hide the ID column
- Kendo toolbar AddNew button doesn't work when
相关文章
- Kendo Ui Dropdownlist Set Visible via Javascript
- How to change view date dynamically (which is filt
- Kendo DropDownList Shows DataValueField Prior to D
- Kendo UI Datasource - Filter on releated data
- Kendo UI Grid Refesh on Dropdown Selection
- How to bind kendo mvc ui dropdownlist dynamically
- KendoUI integration into Durandal JS
- How to make a Pie Chart Aggregate the Data Source?
There is not (afaik) but you can implement it pretty easily as this:
Where I save previous value and then asks for confirmation.
See it running here.
Same approach but different implementation:
Where I extend
kendoDatePicker.options
object with aprevious
field and then I update it when it changes.