How to catch a change on a date input field in the editor ?

How to catch a change on a date input field in the editor ?

GtAntoineGtAntoine Posts: 1Questions: 1Answers: 0

I know that for a select input type it is : $('select', editor.field('myselect').node()).change( function () { but I don't know how to adapt it for a date field.

Answers

  • allanallan Posts: 61,821Questions: 1Answers: 10,127 Site admin

    Probably the best way is to use the dependent() method - that will trigger the callback whenever the value selected is changed.

    Allan

This discussion has been closed.