I have an Id and Name column in Handsontable. When user enters Id in 1st column, name automatically gets populated in 2nd column with the help of ajax call by passing the entered Id in AfterChange event.
When user copies an Id from another cell and pastes into an empty cell, AfterChange fires properly and I’m able to get the value of Id pasted but the ajax call in jQuery method fails returning “Access is Denied” error. The call never reaches server side method.
Strange part is that if user double clicks the cell and then pastes the Id, it works without any issues.
Thanks in advance!