Thanks Dan, the loading spinner are showing in JS as expected before response is posted from the server whenever I select a time range or click on an existing event block. Thanks again.
Is it possible to show a loading spinner when I delete an event via `OnEventMenuClick` handler?
The following code does show the loading spinner, however the PostBack handler doesn't get fired by the server - so it's just displaying the loader infinitely.
<DayPilot:DayPilotMonth ID="dp" runat="server" ClientObjectName="dp"
OnEventMenuClick="dp_Cal_EventMenuClick"
/>
<DayPilot:DayPilotMenu ID="dpm" runat="server" ClientObjectName="dpm" >
<DayPilot:MenuItem Text="Delete" Command="Delete" Action="PostBack"
JavaScript="showLoader(); dpm.eventMenuClickPostBack(e, command)" />
</DayPilot:DayPilotMenu>