Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

How to disable minus icon in inputRangeSlider

shivaji_doleMay 31 2013 — edited Jun 3 2013
Hi,

We are using Jdeveloper version 11.1.1.5.0

we have requirement to have progressbar where user can change the progress manually, like change the slider value by dragging it.

To achieve this we are trying to use inputRangeSlider component available in ADF, during this we are facing issue in disabling the left tick/minus icon for the component. We need only one side slider like major tick alone.

Is there a way to disable(non eidtable)/lock the left tick/minus icon using either css or any other.

below is sample we are using.
jsff:
<af:inputNumberSlider label="" id="inputNumberSlider1" maximum="100" converter="javax.faces.Integer" autoSubmit="true"
value="#{viewScope.ProgressBarModel.numberValue}" minimumIncrement="5" minimum="0"
valueChangeListener="#{viewScope.ProgressBarModel.onSlideChange}" simple="true"/>

skinning:
af|inputRangeSlider::thumb-icon-style{ visibility: hidden;}
af|inputRangeSlider::thumb-value{ visibility: visible; color: White; border: none ;}
af|inputRangeSlider::bar-outer-border { border: none ; background: InactiveCaption ; height: 20.0px; padding-left: 1px;padding-right: 1px; padding-top: 0px; padding-bottom: 1px}
af|inputRangeSlider::bar-inner-border { border: none ; background: InactiveCaption ; height: 20.0px; padding: 0px 0px 0px 0px}
af|inputRangeSlider::minus-icon-style { background: none ; border-left: none ; }
af|inputRangeSlider::plus-icon-style {background:none; border-left: none ;}
af|inputRangeSlider::content {width: 250px;}
af|inputRangeSlider::range { background: Navy ; height: 20.0px;}

Please suggest.

Thanks in advance,

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Jul 1 2013
Added on May 31 2013
2 comments
229 views