I've been experimenting with using jQuery handsontable in conjunction with an angular directive, but I've encountered a strange issue. Whenever I type something into the cells, the characters appear outside of the table instead of inside it. Oddly enough, this problem doesn't occur when I initialize handsontable within an angular controller rather than an angular directive.
Here's a link to my jsfiddle.
Below is the code I used to initialize handsontable:
$(element).handsontable({
data: $scope.data,
columns: [{data: 'name'}, {data: 'age'}]
})
Has anyone else experienced this issue before?