我试图将一个包含一些图表以及一些RangeSlider小部件的网页放在一起,以控​​制图表的数据范围和粒度。我已经创建了一些元素来保存各种导航项目,并且正是在这里我要放置RangeSliders。一切正常,除了当我单击手柄之间的阴影栏时,要左右移动两个手柄时,这些手柄都会跳到滑块的右端,并停留在该位置。

我很确定这是由于div的绝对/相对位置与滑块组件之间的不兼容,但是我要尽力使它工作。如果仅将滑块放置为没有div样式,则滑块可以工作,但不在我想要的位置。

整个文件在下面列出。大约只有80行,包括我的样式信息。为了简单起见,我将其附加到div上,而不是从外部.css文件中绘制。要尝试,您需要调整dojo组件的路径。

一个比我更有能力的人可能会稍作调整,但是我似乎无法将dojo要求与自己的要求相协调。

谢谢。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
    <title>Errlog Chart for Single Host</title>
    <style type="text/css">
        @import "1.7.src/dojo/resources/dojo.css";
        @import "1.7.src/dijit/themes/tundra/tundra.css";
        @import "1.7.src/dijit/themes/dijit.css";
        @import "1.7.src/dijit/tests/css/dijitTests.css";
        @import "1.7.src/dojox/form/resources/RangeSlider.css";
    </style>

    <script type="text/javascript" src="1.7.src/dojo/dojo.js" djConfig="isDebug:true, parseOnLoad: true"></script>
    <script type="text/javascript">
        dojo.require("dojox.form.RangeSlider");
        dojo.require("dijit.form.HorizontalRule");
        dojo.require("dijit.form.HorizontalRuleLabels");
    </script>
</head>
<body class="tundra">
<div id='header' style="width:100%;
    background: #FC8;
    position: absolute;
    height: 30px;
    top: 0;">header</div>
<div id='middle' style="width:100%;
    background: #8FC;
    position: absolute;
    top: 30px;
    bottom: 30px;">
  <div id='left' style="background: #C8F;
    position: absolute;
    left: 0;
    top: 0;
    width: 25%;
    height: 100%;">
  </div>
  <div id='right' style="background: #CF8;
    position: absolute;
    left: 25%;
    top: 0;
    width: 75%;
    height: 100%;">
  <div id='charts' style="background: #DF7;
  position: absolute;
  width: 100%;
  top:0;
  height:60%;">
CHARTS GO HERE
  </div>
  <div id='sliders' style="background: #BF9;
  position: absolute;
  width: 100%;
  bottom:0;
  height:40%;">
SLIDERS GO HERE
    <div
        id="hrSlider"
        discreteValues="11"
        onChange="dojo.byId('minValue').value=dojo.number.format(arguments[0][0]/100,{places:1,pattern:'#%'});dojo.byId('maxValue').value=dojo.number.format(arguments[0][1]/100,{places:1,pattern:'#%'});"
        value="20,80"
        intermediateChanges="true"
        style="width:500px;"
        dojoType="dojox.form.HorizontalRangeSlider">
        <ol dojoType="dijit.form.HorizontalRuleLabels" container="topDecoration" style="height:1.2em;font-size:75%;color:gray;" count="11" constraints="{pattern:'#.00%'}"></ol>
        <div dojoType="dijit.form.HorizontalRule" container="topDecoration" count=11 style="height:10px;margin-bottom:-5px;"></div>
    </div>
    Horizontal Slider Min Value:<input readonly id="minValue" size="10" value="20.0%"/><br/>
    Horizontal Slider Max Value:<input readonly id="maxValue" size="10" value="80.0%"/><br/>
  </div>
  </div>
</div>
<div id='footer' style="width:100%;
    background: #8CF;
    position: absolute;
    height: 30px;
    bottom: 0;">footer</div>
<script type="text/javascript">
</script>
</body>
</html>

最佳答案

如果最小值和最大值之间的差异不能被离散值整除,则会出现奇数偏移。由于您未设置min max,因此它们的默认值为0和100。这是101个值,不能被11整除

07-28 06:15