Page 1 of 1

how can I remove the button for "humindex" etc ?

Posted: Sun 20 Sep 2015 12:00 pm
by wetterfrosch1971
Hello,

I want only change between drewpoint and apparent-temprature.
How can I remove the button "humindex", "heatindex", "windchill" ?

thanks for help.
Frank

Re: how can I remove the button for "humindex" etc ?

Posted: Sun 20 Sep 2015 3:40 pm
by laulau
Hi,
Try to remove the 'unwanted' selection in gauges-ss.htm here in the code

Code: Select all

    <div class="gauge">
      <div id="tip_1">
        <canvas id="canvas_dew" class="gaugeSizeStd"></canvas>
      </div>
      <input id="rad_dew1" type="radio" name="rad_dew" value="dew" onclick="gauges.doDew(this);"><label id="lab_dew1" for="rad_dew1">Dew Point</label>
      <input id="rad_dew2" type="radio" name="rad_dew" value="app" checked onclick="gauges.doDew(this);"><label id="lab_dew2" for="rad_dew2">Apparent</label>
      <br>
      <input id="rad_dew3" type="radio" name="rad_dew" value="wnd" onclick="gauges.doDew(this);"><label id="lab_dew3" for="rad_dew3">Wind Chill</label>
      <input id="rad_dew4" type="radio" name="rad_dew" value="hea" onclick="gauges.doDew(this);"><label id="lab_dew4" for="rad_dew4">Heat Index</label>
      <br>
      <input id="rad_dew5" type="radio" name="rad_dew" value="hum" onclick="gauges.doDew(this);"><label id="lab_dew5" for="rad_dew5">Humidex</label>
    </div>

Re: how can I remove the button for "humindex" etc ?

Posted: Mon 21 Sep 2015 7:39 am
by wetterfrosch1971
Thank you, it works.