Hey Sarthak,
Thank you for that.
I've tried turning off the Editor.update... etc. but you still get the InfoWindow. Any chance a simple Editor.showAttributes boolean toggle could be added?
In the meantime I've taken a look at the sample you suggest and that will do the trick nicely, thank you.
My feature layer will be presented to the user and the only option we want is to allow them to edit the presented polygons (not add or delete any). So I have that working allowing them to EditTool.EDIT_VERTICES | EditTool.MOVE which works fine, but would also like to allow them to use EditTool.ROTATE | EditTool.SCALE as well but adding them in doesn't work using the following in the layerClickHandler:
editTool.activate(EditTool.EDIT_VERTICES | EditTool.MOVE | EditTool.ROTATE | EditTool.SCALE, [ selectedGraphic ]);
So guess you need to toggle between those two sets? Any clues how to do that? Editor manages it it, but EditTool doesn't automatically.
Cheers
Ian