Opened 13 years ago
Closed 13 years ago
#9581 closed defect (duplicate)
Slider in release 1.1.1 now woring as expected for IE
Reported by: | vinay chaudhary | Owned by: | anonymous |
---|---|---|---|
Priority: | high | Milestone: | tbd |
Component: | General | Version: | 1.3.1 |
Keywords: | Slider | Cc: | [email protected]… |
Blocked By: | Blocking: |
Description
I am having slider inside a TD tag which is having the property bgcolor"#FFFFFF". It is coming perfectly in Mozilla and safari. But the same code is given problem in both IE6 and IE 7. Please find the sample code below: <td width="567" valign="top" bgcolor="blue">
<h1 class="testTitle">Slider</h1> Also try using the arrow keys, buttons, or clicking on the progress bar to move the slider. <br> <!-- to test form submission, you'll need to create an action handler similar to
<form id="form1" action="" name="example" method="post"> <br>initial value=10, min=0, max=100, pageIncrement=100, onChange event triggers input box value change immediately<br>
<div dojoType="dijit.form.HorizontalSlider?" name="horizontal1"
onChange="dojo.byId('slider1input').value=dojo.number.format(arguments[0]/100,{places:1,pattern:'#%'});" value="10" maximum="100" minimum="0" pageIncrement="100" showButtons="false" intermediateChanges="true" style="width:50%; height: 20px;" id="slider1">
<ol dojoType="dijit.form.HorizontalRuleLabels?" container="topDecoration" style="height:1.2em;font-size:75%;color:gray;" count="6" numericMargin="1"></ol> <div dojoType="dijit.form.HorizontalRule?" container="topDecoration" count=6 style="height:5px;"></div> <div dojoType="dijit.form.HorizontalRule?" container="bottomDecoration" count=5 style="height:5px;"></div> <ol dojoType="dijit.form.HorizontalRuleLabels?" container="bottomDecoration" style="height:1em;font-size:75%;color:gray;">
<li>lowest</li> <li>normal</li> <li>highest</li>
</ol>
</div>
Slider1 Value:<input readonly id="slider1input" size="4" value="10.0%"> <br> <button id="disableButton" dojoType="dijit.form.Button" onClick="dijit.byId('slider1').setAttribute('disabled', true);dijit.byId('disableButton').setAttribute('disabled',true);dijit.byId('enableButton').setAttribute('disabled',false);">Disable previous slider</button> <button id="enableButton" dojoType="dijit.form.Button" onClick="dijit.byId('slider1').setAttribute('disabled',false);dijit.byId('disableButton').setAttribute('disabled',false);dijit.byId('enableButton').setAttribute('disabled', true);" disabled>Enable previous slider</button> <br>
</td>
Change History (3)
comment:1 Changed 13 years ago by
comment:3 Changed 13 years ago by
Resolution: | → duplicate |
---|---|
Status: | new → closed |
closing this in favor of #9580, which seems an accidental dup of this.
Slider in release 1.1.1 not woring as expected for IE