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

mouse scroll breaks radcombobox

2 Answers 87 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Jeremy
Top achievements
Rank 1
Jeremy asked on 02 Mar 2011, 11:51 PM
In the AdvancedInsertTemplate, if you use a radcombobox, expand it, and scroll with the mouse while its expanded, the list breaks from the combobox. You can view this occurance going here:
 http://demos.telerik.com/aspnet-ajax/scheduler/examples/advancedformtemplate/defaultcs.aspx then
Edit an appointment then expand or drop down  reminder or  room radcomboboxes. Afterwards, scroll with your mouse while its expanded.

I believe the issue is that the radscheduler is not modal.  If we can set the radscheduler to modal or not move in the background that would be great.

Jeremy

2 Answers, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 03 Mar 2011, 02:56 PM
Hi Jeremy,

Thank you for reporting this issue. We will do some more research and try to fix it.

All the best,
Peter
the Telerik team
Registration for Q1 2011 What’s New Webinar Week is now open. Mark your calendar for the week starting March 21st and book your seat for a walk through all the exciting stuff we ship with the new release!
0
Kalina
Telerik team
answered on 05 Apr 2011, 03:43 PM
Hi Jeremy,

I can suggest you workaround the issue by closing the RadComboBox control upon “scroll” event.
Please add this JavaScript function to your page:

function pageLoad() {
    $telerik.$(window).scroll(function () {
        var combos = Telerik.Web.UI.RadComboBox.ComboBoxes;
 
            if (combos != null) {
                for (var i = 0; i < combos.length; i++) {
                    var combo = combos[i];
                    if (combo.get_dropDownVisible())
                        combo.hideDropDown();
                    }
                }
 
 
          });
 
}

I hope this helps.

Best wishes,
Kalina
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
Scheduler
Asked by
Jeremy
Top achievements
Rank 1
Answers by
Peter
Telerik team
Kalina
Telerik team
Share this question
or