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

[Solved] Asp.net MVC DatePicker - (FireFox v3.0.18) not working in Telerik Demo site

1 Answer 61 Views
Date/Time Pickers
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
martin f
Top achievements
Rank 1
martin f asked on 03 May 2010, 08:19 AM

Hi,
   Asp.net MVC DatePicker  not working in FireFox v3.0.18 in my project.
  Same error exist in the  Telerik Demo site(http://demos.telerik.com/aspnet-mvc-beta/datepicker#)
  I couldn't find anything in the forums about anyone having any trouble with firefox.

Any help is apprecicated.

Thanks!

1 Answer, 1 is accepted

Sort by
0
Alex Gyoshev
Telerik team
answered on 03 May 2010, 11:50 AM
Hello Martin,

The issue is caused because we used a DOM field that wasn't implemented in Firefox 3.0. We fixed it - you can apply the following patch to the source code in order to get it to work:

In telerik.calendar.js, change the following line (around line 825):

    var findTarget = function(collection, searchedText) {
        return $.grep(collection, function(item) {
            return $(item.children[0]).text().indexOf(searchedText) > -1;
        })[0];
    }


to:

    return $(item).children().eq(0).text().indexOf(searchedText) > -1;

We've addressed the problem in our code and the fix will be available with upcoming releases.

All the best,
Alex Gyoshev
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
Date/Time Pickers
Asked by
martin f
Top achievements
Rank 1
Answers by
Alex Gyoshev
Telerik team
Share this question
or