Maya uses a "Push-Pull Model". which is a quite important concept when you do Maya programming.
When you set an attribute for a node, Maya only marks all the connected nodes after the node you just modified as "dirty". All the "value update" things should happen once you request an output value of a particular node, which will cause a chain of upates.
In your case, even though you set translation of a node, Maya just mark all the attributes which would be affected by your changes as dirty. It won't do the chain of updates ( "redraw" in your case) until it "needs to". The reason why it only redraw when you mouse over viewcube is because Maya needs to redraw the viewport when you mouse over viewcube (see the viewcube is highlighted ?), which will cause everything within viewport, including your object, be updated.
Hope it helps!
Cheers! 