This question is locked. New answers and comments are not allowed.
Hi,
I'm using the release 2011.1.315 and I use a master/detail grid with a tabstrip inside like your demo http://demos.telerik.com/aspnet-mvc/grid/detailsajax. In my detailview grid located under one item of the tabstrip, I'm using Grid inline editing with 2 telerik Ajax bound combobox. When I have 1, all works fine, but when I have 2, the icon over arrow of combobox is always spining(for both) even if all content is loaded. Here are the 2 ascx controls.
Resultat.ascx
Member.ascx
Thank you for your help
Steve
I'm using the release 2011.1.315 and I use a master/detail grid with a tabstrip inside like your demo http://demos.telerik.com/aspnet-mvc/grid/detailsajax. In my detailview grid located under one item of the tabstrip, I'm using Grid inline editing with 2 telerik Ajax bound combobox. When I have 1, all works fine, but when I have 2, the icon over arrow of combobox is always spining(for both) even if all content is loaded. Here are the 2 ascx controls.
Resultat.ascx
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<AsjWebApp.Models.Poco.EnumNomValeur<AsjWebApp.Models.Enums.COURS_RESULTAT>>" %><%= Html.Telerik().ComboBoxFor(r => r.Pk) .Name("Resultat") .DataBinding(binding => binding.Ajax().Select("_ResultatAjaxLoading", "RapportCours")) .Filterable(filtering => filtering.FilterMode(AutoCompleteFilterMode.Contains)) .HighlightFirstMatch(true) %>Member.ascx
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<AsjWebApp.ViewData.MemberLight>" %><%= Html.Telerik().ComboBoxFor(r => r.Pk) .Name("fk_MembreId_Membre") .DataBinding(binding => binding.Ajax().Select("_MembresAjaxLoading", "RapportCours")) .Filterable(filtering => filtering.FilterMode(AutoCompleteFilterMode.Contains)) .HighlightFirstMatch(true) %>Thank you for your help
Steve