From my scheduler I can drill down into resources via a popup window. The user can potentially update the resource, so I'm using window.opener to call some javascript in my scheduler page. What's the best way to either update the one resource that's changed (I have the resource ID I need), or get the entire control to refresh, from javascript?
I can use events.find() to find the event, but when I call events.update(e).notify(), I get an exception because the event is not dirty (as far as the scheduler is concerned).