Custom Widget Slider Binding

Hi I try to deal with a custom widget for innogy termostates. So far everything works, but I didn’t get the binding on a widget-slider working. I tried a log but the slider doesn’t bound to the underlaying value.

<div class="slider-div" ng-init='sliderModel={
                         name: "Ziel Temperatur",
            	         floor : 6,
                         ceil: 30,
                         step: 0.5,                            
                         horizontal: "true",
                         showTicks:true,
            		     unit: "°C",
            			 display: none
                         }'>
 <widget-slider width="100%" ng-model="sliderModel" value="{{itemValue(config.desired_temperature)}}" item="{{itemValue(config.desired_temperature)}}" />
</div>

I have tried to bind it inside the model as well, nothing worked so far. Can anybody help me what I am doing wrong?
The setting which I want to bind is named desired_temperature.

Got it working. Use item: config.desired_temperature inside the bg-init.

This topic was automatically closed 41 days after the last reply. New replies are no longer allowed.