Paper UI setpoint not updating

Hey Guys i have a Problem i have 3 Setpoints in my Sitemap. When i press the Buttons the Item itself changes but this is not represented in the UI. If i click it 3 times it still shows the initial Value. If i hit the refresh Button it shows the new value.
Tested with: IE, Chrome, Safari all same behaviour.

Frame label="Temperatur waehlen"{
            Setpoint item=heating_temp_day icon="temperature" label="Day [%.1f C]" minValue=6 maxValue=25 step=0.5
            Setpoint item=heating_temp_evening icon="temperature" label="Evening [%.1f C]" minValue=6 maxValue=25 step=0.5
           Setpoint item=heating_temp_night   icon="temperature" label="Night [%.1f C]" minValue=6 maxValue=25 step=0.5
          }

Items are defined as number in Paper UI. If i use the arrows OH2 doesn’t give me any error Logs.

The only thing i already saw is when i load the Sitemap it gives me some errors for the Group items that are being displayed. If i understand correctly those logs should be a lower log level corect?

2016-12-08 12:18:10.989 [ERROR] [ui.internal.items.ItemUIRegistryImpl] - Cannot retrieve item for widget org.eclipse.smarthome.model.sitemap.Group

any advices from the pros?

This issue is (was) known and has been addressed some weeks (maybe months) ago. Do you use a pretty recent version of OH2? Or the Beta4? I know, in Beta4 it still wasn’t (fully) fixed.

I cant actually say that. I installed on Friday. Actually im just running openHABian. As far as i know it should just download the latest apt package. So i would assume im quite up to date.

I actually made it work but the behaviour is still strange: by putting them in a sitemap group but as soon as i start add a frame into that it breaks again

not working:

Group item="Temperature Setting"   label= "Heating Temperatures" icon="temperature"{

Frame label="Target" {
            Setpoint item=heating_temp_day icon="temperature" label="Day [%.1f C]" minValue=6 maxValue=25 step=0.5
            Setpoint item=heating_temp_evening icon="temperature" label="Evening [%.1f C]" minValue=6 maxValue=25 step=0.5
            Setpoint item=heating_temp_night   icon="temperature" label="Night [%.1f C]" minValue=6 maxValue=25 step=0.5
}
Frame label="Target" {
            Text item=heating_temp_target  icon="temperature" label="Target Temperature [%.1f C]"
              }
          }

working:

  Group item="Temperature Setting"   label= "Heating Temperatures" icon="temperature"{
           Setpoint item=heating_temp_day icon="temperature" label="Day [%.1f C]" minValue=6 maxValue=25 step=0.5
            Setpoint item=heating_temp_evening icon="temperature" label="Evening [%.1f C]" minValue=6 maxValue=25 step=0.5
            Setpoint item=heating_temp_night   icon="temperature" label="Night [%.1f C]" minValue=6 maxValue=25 step=0.5
           Text item=heating_temp_target  icon="temperature" label="Target Temperature [%.1f C]"
               }

Is that a expected behaviour? I also have a 2nd Problem. I use those Setpoints to set Heating Targets. Whenever my day target is active the value of the corresponding setpoint should always update the target temperature.
When the switch item updates this is actually working. but when i change the temperature on the fly it will not update

rule:


    when

    item heating_temp_day received command  or
    item heating_temp_evening  received command  or
    item heating_temp_night   received command or
    Item heating_sw_day changed
then


    if(heating_sw_day.state==ON) {
        heating_temp_target.sendCommand(heating_temp_day.state)
    }


    else if(heating_sw_evening.state==ON){
        heating_temp_target.postUpdate(heating_temp_evening.state)
    }


    else if(heating_sw_night.state==ON){
        heating_temp_target.postUpdate(heating_temp_night.state)
    }

end

Seems like the sw item triggers an update but not the other conditions. Any advice?