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

rad clientside event in firefox

1 Answer 68 Views
Input
This is a migrated thread and some comments may be shown as answers.
jawahar
Top achievements
Rank 1
jawahar asked on 29 Jan 2009, 05:57 AM
Hi,
For me the raddatepicker's clientside event 'OnDateSelected'  is not trigeering in firefox .
can anyone help me in this
Thx,
jawaher
 

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 29 Jan 2009, 02:48 PM
Hello Jawahar,

The OnDateSelected client event should fire in FireFox. Which version of RadDatePicker are you using? I tried with version 2008.1.415.20 and its working as expected. Check for any differences in your code with the following code:
aspx:
<telerik:RadDatePicker ID="RadDatePicker1" runat="server"
        <ClientEvents OnDateSelected="DateSelected" /> 
 </telerik:RadDatePicker> 

js:
 function DateSelected(sender,args) 
    {    
      var datesender.get_selectedDate(); 
      alert(date); 
    } 

Thanks
Princy.
Tags
Input
Asked by
jawahar
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or