vote up 0 vote down star

Hello Friends,

Can anyone tell me how can I change the default style of DropDownlist scrollbar

I use below style property to change scrollbar style but its not working for dropdownlist

.scrollbarstyle
{
    scrollbar-face-color: #BAC8D5;
    scrollbar-highlight-color: #DCF5F8;
    scrollbar-shadow-color: #DEE3E7;
    scrollbar-3dlight-color: #879BA9;
    scrollbar-arrow-color: #FFFFFF;
    scrollbar-track-color: #E0EAEF;
    scrollbar-darkshadow-color: #90ABBE;
}

Thanking you.

flag

2 Answers

vote up 1 vote down check

Never use these styles for a drop down list. It will work only in IE.

Instead use some div and use script and style to make and appear as a combobox.

Check this for a Yahoo solution

For a jQuery based one, check this

link|flag
thnaks, that fine but i want that with asp.net dropdownlist contol because i want selected index change event for that. – Nikunj Jul 8 at 6:09
You won't be able to do it in a cross browser way in a dropdownlist control. But you can achieve this using a div and can code using javascript for selected index changed. – adamantium Jul 8 at 6:34
vote up 0 vote down

But these are not working in asp.net 2.0 becoze css dosnt have these property

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.