事件触发器不起作用

Event Trigger Is not Function

在分页网格中,我们使用向上键更改事件函数来过滤 table 值。在那个 Key up 更改事件中工作正常但是在获得过滤器结果后如果我单击编辑按钮它不会在第一次工作我需要更多时间单击按钮来编辑表单。 在那个问题中,我通过仅使用按键事件功能而不是按键更改功能获得了解决方案。但是我还遇到了一个问题,由于这个按键事件功能,日期时间选择器在过滤器上不起作用。我该如何解决这个问题?

function LoadData() {
    debugger
    dataTable.getData();
    $("th input[type=text]").on('keyup', function () {

        dataTable.otable
            .column($(this).parent().index() + ':visible')
            .search(this.value)
            .draw();
    });
}

You add the date picker change