Machine Schedule

I found a small ‘issue’ with this when dragging an item. If the amount of time it took to drag an item is longer than the polling time for the Items data a ghost of the dragged item appears where it used to be. The way I’ve gotten around that is to turn the polling mode for the Items property binding to off. Is there a way to do this dynamically while a user is dragging?

To answer my own question: I took away the binding and updated the dataset with a periodic timer. I’m turning the timer off when it’s permissable for a user to drag something.

Still, is it possible to reach something like the polling mode of a binding?

There is not a way to effect the the binding’s polling rate with scripting. You have the right idea turning polling off and setting a timer to refresh the dataset through scripting. This is now in our system as a bug to be fixed.