Other event then 'onChange'?

Using slider form the latest suite.

This slider has 4096 values and uses the ‘onChange’ event to trigger an Ajax call to put the value in a database. My problem is that when I use the slider by clicking on it and slide (while holding the mousebutton pushed) it starts firing events already, thus sending thousands of Ajax messages, while
I need only the last one. So I am wondering, is there a way to make/use something like an ‘onmousebuttunup’ event, so that only 1 event triggers when I release the mouse button?
Thanks

Did you try onSlideEnd event?
docs.dhtmlx.com/api__dhtmlxslide … event.html

You can use this online sample:
dhtmlx.com/docs/products/dhtmlxS … vents.html

Thank you, that did the trick!

You are welcome!