I have some asp text box in each of one i use a property call required like this
1.
<
asp:TextBox
runat
=
"server"
ID
=
"TxtCorreoVal"
CssClass
=
"form-control"
required>
and in the css i use this, i upload an image of how it looks in a normal textbox i want use the same functionality on RadDatePicker and RadComboBox
how can i do this
01.
input:required:invalid, input:focus:invalid {
02.
background-image
:
url
(../imagenes/required.png);
03.
background-position
:
right
top
;
04.
background-repeat
:
no-repeat
;
05.
-moz-box-shadow:
none
;
06.
}
07.
input:required:valid {
08.
background-image
:
url
(../imagenes/Ok.png);
09.
background-position
:
right
top
;
10.
background-repeat
:
no-repeat
;
11.
}
Thank for your time