Search

You searched for the word(s): userid:775211

Matching Posts

  • Re: Problems with Repeater ItemCommand Event and UpdatePanel Triggers

    Hello man, no problem you must to catch the item databound event and in it write the following code, Eg. protected void RepeatEntidades_ItemDataBound(object sender, RepeaterItemEventArgs e) { if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem ) { CheckBox chk = (CheckBox)e.Item.FindControl("CheckBox1"); if (chk == null) return; ScriptManager.GetCurrent(this).RegisterAsyncPostBackControl(chk); } } the code above obtain the items in the repeater and
    Posted to ASP.NET AJAX UI (Forum) by sgon1853 on 12/18/2008
  • Re: Problems with Repeater ItemCommand Event and UpdatePanel Triggers

    Hola lo que debes hacer es en el codigo del itemdatabound del repeater el siguiente codigo por ej. protected void RepeatEntidades_ItemDataBound(object sender, RepeaterItemEventArgs e) { if (e.Item.ItemType != ListItemType.Item) return; CheckBox chk = (CheckBox)e.Item.FindControl("CheckBox1"); if (chk == null) return; ScriptManager.GetCurrent(this).RegisterAsyncPostBackControl(chk); } ahi lo que haces es que cada vez que enlazas un item al repeater lo matriculas como control para realizar
    Posted to ASP.NET AJAX UI (Forum) by sgon1853 on 12/15/2008
Page 1 of 1 (2 items)