I have two controls in my page, 1 readonly textbox (input) and 1 radcombobox.
i changed the style of my textbox as shown below:
| <style type="text/css"> |
| input[readonly] |
| { |
| background-color: #fafafa !important; |
| color: #000000 !important; |
| cursor: default !important; |
| } |
| </style> |
however it seemed like radcombobox uses input[readonly] as well and it is affected by my custom style. how can i prevent this?
