【发布时间】:2011-03-27 17:25:06
【问题描述】:
我有一个如上所示的值数组。
myarray2.push("10-FEB-11");
myarray2.push("11-FEB-11");
myarray2.push("12-FEB-11");
myarray2.push("13-FEB-11");
myarray2.push("14-FEB-11");
我想在 div hrXAxisSlider 中包含这些值,如图所示(目前它是硬编码的,但这可能吗)
<div id="hrXAxisSlider"
dojoType="dojox.form.HorizontalRangeSlider">
<ol dojoType="dijit.form.HorizontalRuleLabels" >
<li>10-FEB-11</li><li>11-FEB-11</li><li>12-FEB-11</li><li>13-FEB-11</li><li>14-FEB-11</li>
</ol>
</div>
【问题讨论】: