Web
ASP.NET AJAX
Do you think that RadComboBox animations are boring? We can spice them up with a little help from jQuery. Let's make the dropdown fade for example - This can be done very easily using the fadeIn, fadeTo and fadeOut jQuery methods. You can download a sample project for more details. We can also animate the text of the items. All you need to do is to animate the padding-left css attribute of the item's DOM element. The following script shows how the text can be moved when you hover over the item: $('.rcbItem') .mouseover(function(){ $(this).stop().animate({paddingLeft:"54px"}, {duration:500}); }) .mouseout(function(){ $(this).animate({paddingLeft:"4px"}, {duration:500}); })