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

[Solved] Ajax DropDownList in Grid Ajax bound

1 Answer 77 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Steve
Top achievements
Rank 1
Steve asked on 21 Mar 2011, 11:55 PM
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
<%@ 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

1 Answer, 1 is accepted

Sort by
0
Steve
Top achievements
Rank 1
answered on 15 Apr 2011, 04:57 AM
Could you please help me?  I had no reply on that question.

Thank you very much
Tags
Grid
Asked by
Steve
Top achievements
Rank 1
Answers by
Steve
Top achievements
Rank 1
Share this question
or