protected void RefreshGrid(bool rebind) { RadGrid1.DataSource = CntLainsaSci.GetGruposUsuarios(ctx); if (rebind) { RadGrid1.Rebind(); } }
protected void rdcGrupo_ItemsRequested(object sender, RadComboBoxItemsRequestedEventArgs e) { if (e.Text == "") { return; } RadComboBox combo = (RadComboBox)sender; combo.Items.Clear(); foreach (GrupoUsuario gpu in CntLainsaSci.GetGruposUsuarios(e.Text, ctx)) { combo.Items.Add(new RadComboBoxItem(gpu.Nombre, gpu.GrupoUsuarioId.ToString())); } }
protected void LoadGruposUsuario(RadComboBox combo) { if (combo.Items.Count > 0) { return; } combo.Items.Clear(); foreach (GrupoUsuario gpu in CntLainsaSci.GetGruposUsuarios(ctx)) { combo.Items.Add(new RadComboBoxItem(gpu.Nombre, gpu.GrupoUsuarioId.ToString())); } combo.Items.Add(new RadComboBoxItem("", "")); combo.SelectedValue = ""; }