2

I have a wrapper class over RadDatePicker.

public class DateTimePicker : Telerik.Web.UI.RadDatePicker
{
    public DateTimePicker ()
        : base()
    {
        //
        // Some code her
        //
    }
}

Now, I have my own implementation here. I want to use the event's like DateInput-ClientEvents-OnBlur :

<mydll:DateTimePicker id="date" runat="server" autopostback="true" 
       DateInput-ClientEvents-OnBlur="alert('Ding');"/>

But, I couldn't get the OnBlur working. Not getting what did I miss.

Thanks. IO

FeliceM
  • 4,163
  • 9
  • 48
  • 75
  • Is this ASP.NET or MVC? Are you trying to bind the event in markup only, or could you use JavaScript or C#/VB.NET server-side to set it? – DanM7 Jun 27 '14 at 15:31
  • 1) It is ASP.NET. 2) I am trying to bind event in markup only. –  Jul 03 '14 at 05:58

0 Answers0