Slider: Display problem with Firefox 3
I found a problem when moving the slider handle to a new value using
Firefox 3.
Here is the code I am using to initialize my slider:
...
if ( $("#TrxOptSlider"))
{
$("#TrxOptSlider").slider(
{
steps: 3,
min: 0,
max: 3,
change: function(e, ui)
{
var lValue = $('#TrxOptSlider').slider('value', 0) +
1;
// set the value into the hidden field.
$("#TrxOptimizationLevelValue").val( lValue );
}
} );
// Set the innitial value
if ( $("#TrxOptimizationLevelValue").val() != "" )
{
var lValue = $("#TrxOptimizationLevelValue").val();
//alert(lValue);
$("#TrxOptSlider").slider("moveTo", lValue);
}
}
...
When using that, the handle appear outside of the slider, at the
right!!
This is happening with Firefox 3 on Windows and Mac, and with Safari
3.
Work fine with Firefox 2 and IE.
I have created a ticket for this (#3101).
I have a complete and very very simple page to demonstrate this.... if
I can upload.