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

Extra "t-animation-container"s when opening and closing a comboBox rapidly

1 Answer 44 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
John
Top achievements
Rank 1
John asked on 15 Aug 2012, 03:25 PM
Hi,
 We have noticed that it is possible to open and close a combo box in our application quickly enough that there are a buildup of animation containers that persist until the page is reloaded. This has the side effect of preventing the comboBox popup from being displayed once any of these extra animation containers are present on the page, effectively rendering the comboBox inoperable. This problem cannot be reproduced on the Telerik example page.

The code for the combo box is: 

@(Html.Telerik().ComboBoxFor(model => model.Parent)
                            .Name("add-node-window-parent-node-id")
                            .AutoFill(true)
                            .DataBinding(binding => binding.Ajax()
                                .Select("SearchParentNodes", "Hierarchies", new { treeDate = @Model.TreeDate, hierarchyID = @Model.HierarchyID })
                                .Cache(false))
                            .Filterable(filtering =>
                            {
                                filtering.FilterMode(AutoCompleteFilterMode.StartsWith);
                            })
                            .HighlightFirstMatch(true)
                            .ClientEvents(events => events
                                .OnChange("addNodeParentNodeOnChange")
                                .OnDataBound("addNodeParentNodeOnDataBound")
                                .OnLoad("addNodeParentNodeOnLoad")
                                .OnOpen("addNodeParentNodeOnOpen"))
                        )

If anyone could provide any insight into this it would be appreciated.

Thanks,

-John

1 Answer, 1 is accepted

Sort by
0
John
Top achievements
Rank 1
answered on 19 Sep 2012, 03:55 PM
We updated our version of telerik and this is no longer an issue.
Tags
General Discussions
Asked by
John
Top achievements
Rank 1
Answers by
John
Top achievements
Rank 1
Share this question
or