const currentUseTable:FeatureLayer = new FeatureLayer("http://xyz/ArcGIS/rest/services/yyy/zzz/FeatureServer/2");
currentUseTable.addEventListener(FeatureLayerEvent.EDITS_COMPLETE, currentUseTableEditsComplete);
currentUseTable.applyEdits(null, null, [ {OBJECTID:403} ]);
See anything wrong with this? I can add and edit but nothing happens when I delete. There is a record in the table that I am tring to delete from with the ObjectID of 403. When I call the code, nothing happens. No error, the currentUseTableEditsComplete function is never called and the record is not deleted.I've been staring at this for hours and just can't figure out anything else to try. Please help!