I have a array of graphics that I'm adding to a GraphicsLayer with the following code:
gLayer.addMany(features);
This works correctly but I need to catch when then graphics finished rendering on the map because many times the array has many graphics and I need to show a loading to the user.
Thanks