У меня есть массив значений, как показано выше.
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>