I am having a problem where I am unable to update a feature using applyEdits(). I can add and delete features (graphics), but when I try to just update a feature nothing happens.
Add Works:
featlayer.applyEdits([graphic], null, null);
Delete Works:
featlayer.applyEdits(null, null, [graphic]);
Update Doesn't Work:
featlayer.applyEdits(null, [graphic], null);
Has anyone else had this problem or know how to solve it? Am I doing something wrong?
Thanks,
Doug