Pointer value of slider widget

Hi,

I’m programming a custom widget for habpanel for sending a set value to a sensor. For this I use a slider. It looks like this:

}’>`<div ng-init='slider = {
“name”: “”,
“item”: config.temperature,
“floor”: 5,
“ceil”: 25,
“step”: 0.1,
“unit”: “°C”,
“vertical”: false,
“hidelimits”: true,
“hidepointer”: true

}’>`
Is it possible to access the pointer value of the slider? I want to show the value in another part of the widget as “text”, not directly above the slider marker (therefore I set “hidepointer” to true!

Thanks in advance!
SL