This is a migrated thread and some comments may be shown as answers.

Remove RadDateInput Validation Image

2 Answers 40 Views
Input
This is a migrated thread and some comments may be shown as answers.
Prasad
Top achievements
Rank 1
Prasad asked on 15 Nov 2010, 07:59 AM
Hi,

I want to remove the raddateinput validation image(with an "!" mark) which displays inside the input box when user input an invalid date, since i am using a custom validator.I want to remove that feature. Is there any way to do so?

Thanks !

2 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 15 Nov 2010, 10:12 AM
Hello Prasad,


The following css will do the trick for you.

css
<style type="text/css">
   .MyInvalidStyleClass  
    {  
        border: 1px solid gray !important;  
        color: Black !important;  
        background-image: none !important;  
    }  
</style>


aspx:
<telerik:RadDateInput ID="RadDateInput1" runat="server">
    <InvalidStyle CssClass="MyInvalidStyleClass" />
</telerik:RadDateInput>


Regards,
Shinu.
0
Prasad
Top achievements
Rank 1
answered on 15 Nov 2010, 10:56 AM
Hi Shinu,

Thanks alot .I ll try.
Tags
Input
Asked by
Prasad
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Prasad
Top achievements
Rank 1
Share this question
or