updateCellFromClipboard does not trigger update on DataProce

updateCellFromClipboard function doesn not trigger update on DataProcessor . Is this expected behaviour or a bug?

It is expected behavior, dataprocessor doesn’t trigered by data change actions which caused by API calls.
You can to force row update by
dp.setUpdated(rowId,true);
where dp is dataProcessor instance