Hi,
I want to be able to copy paste data from an excel to hot table view, does hot table let us paste random number of rows? if so could share an example?
When I try to do this, my beforeValidateHook is trying to access the data and am getting error
beforeValidate: function (value, row, prop, source) {
return { “value”: value, “row”: row, “columnType”: prop, “loadType”: this.getData()[row][0], “irrPlan”: this.getData()[row][4] }; //I want to be able to access column 0 and 4 in my validate function.
},
Also is there a way to temporarily pause the validation and enable it later?