Hover in Siebel Open UI
On hover make the characters bold:
Requirement was to make bold on hover.We achieved the same by writing code in Applet PR file.
On hover make the characters bold:
Requirement was to make bold on hover.We achieved the same by writing code in Applet PR file.
(a)
(b)
(a)var interactionusageappid = appletMap["<Applet Name>"].GetFullId();
$("#" + interactionusageappid).find('.leftRightArrow').hover(function() {
                        $(this).addClass("borderForCarousalHighlight").removeClass("leftRightArrow");
                    }, function() {
                        $(this).addClass("leftRightArrow").removeClass("borderForCarousalHighlight");
                    });
(b)var interactionusageappid = appletMap["<Applet Name>"].GetFullId();
$("#" + interactionusageappid).find('.carousel-indicators').find('.radioToggle').hover(function() {
 $(this).addClass("borderForCarousalHighlight1").removeClass("carousel-     indicators li");
 }, function() {
 $(this).addClass("carousel-indicators li").removeClass("borderForCarousalHighlight1");
        });
I hope this might help someone with the similar requirements.
Your comments are most welcome!!


 
