GoIconicApp

Im new to goweb godiagram. I’m trying to remove a node from the palette once it is dropped on the canvas. The issue is that I don’'t see any palette events fire when I drop the node. I can add the node delete to the event on the canvas view but It doesn’t get deleted unless I set it to do I postback. Is there a way I can manually reload the palette view from a canvasview event?

I’ve been playing with this tonight, and I’m not sure I’ve got it right, but give this a try:

in your webpage: add
<body onload="goAddUpdate('MyView', 'MyPalette')">
(with the appropriate view IDs)
This should cause MyPalette to be refreshed anytime MyView is.

Thank you that was exactly what I was looking for.