I was able to fix it by this https://github.com/l-lin/angular-datatables/issues/365
The problem was due to I initialized the dataHolder like this
vm.dtInstance = {};
It fixed when I changed it into vm.dtInstance = null;
even vm.dtInstance = undefined
wont work.