Bug in FullCalendar MouseWheel?

0
0

Hi – I’m trying to use the MouseWheel event in Full Calendar.  The below code does not work as expected.  The event actually does fire sometimes – but e.Delta is always 0 – never greater than or less than 0.  I am attaching to the event.
Private Sub SetupEvents() Handles Me.Load
AddHandler caseCalendar.MouseWheel, AddressOf CheckMouseWheel
End Sub

Private Sub CheckMouseWheel(sender As Object, e As MouseEventArgs)
If e.Delta > 0 Then MoveItemUp()
If e.Delta < 0 Then MoveItemDown()
AlertBox.Show(“Mouse wheel delta = ” & e.Delta.ToString)
End Sub

 

 

  • You must to post comments
0
0

Hi Matthew,

WJ-8311 is fixed in the latest Wisej release (1.3.82).

Best regards
Frank

  • You must to post comments
0
0

Thanks very much Frank!

  • You must to post comments
0
0

Hi Matthew,

thanks, I have logged issue WJ-8311 for that problem. A fix will be included in the next build.
As a temporary workaround you can use Control.WheelDelta.

Hope that helps.

Best regards
Frank

  • You must to post comments
Showing 3 results
Your Answer

Please first to submit.