Web Planogrammer Drag and drop

I am using planogram tool with web application support. i want to know Which javascript event fired when u move the product from one place to another in the goview.

There are several “events” for different kinds of clicks, but there isn’t one specifically for moving objects.

The closest is the “NoClick” event, which is called when there is a drag. But the client side (i.e. JavaScript) code doesn’t know the purpose of the drag – it could be a move, or a copy, or a rubber-band select, or a resize, or some other application-defined behavior, depending on the Tool would run upon a mouse down and mouse move.

You can set the GoView.DataRenderer.NoClick property to be the JavaScript you want to execute when the “NoClick” event happens.