Hello,
I want to bind on change event on Date and Time control of Nintex Form.
I tried to bound it using following code:
var ctrl_TempDateTime = NWF$("#" + ctrlID_TempDateTime);
if (ctrl_TempDateTime != null) {
NWF$(ctrl_TempDateTime).datepicker().on("input change", function (e) {
console.log("Date changed: ", e.target.value);
});
}
It is being fired when I am changing date portion but it is not being fired when I am changing time portion.
So how can I bind on change event in date time control in such a way that it should fire when I change time as well.
Any help will be appreciated.