My problem is very simple. Please help me.
I want to hide the empty message when the textbox is disabled.
I tried the css and put opacity to zero but no success. whole textbox become invisible. Please help.
<
telerik:RadTextBox
ID
=
"RadTextBox1"
runat
=
"server"
CssClass
=
"TextBoxLong"
Enabled
=
"false"
EmptyMessage
=
"Speciality"
EmptyMessageStyle-Font-Italic
=
"true"
>
.TextBoxLong {
height
:
22px
;
background
:
#fff
!important
;
color
:
black
!important
;
width
:
294px
!important
;
border
:
1px
solid
#61a5a5
!important
;
padding
:
2px
2px
1px
!important
;
}
.TextBoxLong:disabled, .TextBoxLong[disabled] {
background
:
#EBEBE4
!important
;
}