private void fillDocumento(DropDownList combo) { combo.Enabled = false; combo.Items.Clear(); combo.AppendDataBoundItems = true; combo.DataSource = psvm.getAllDocumentos(); combo.DataValueField = "TIP_IDE_COD"; combo.DataTextField = "TIP_IDE_NOM"; combo.DataBind(); if (combo.Items.Count > 0) { combo.Enabled = true; } else { combo.Enabled = false; combo.Items.Add(new ListItem("--Ninguno disponible--", "")); } }
private void fillDocumento() { comboDocumento.Enabled = false; comboDocumento.Items.Clear(); comboDocumento.AppendDataBoundItems = true; comboDocumento.DataSource = psvm.getAllDocumentos(); comboDocumento.DataValueField = "TIP_IDE_COD"; comboDocumento.DataTextField = "TIP_IDE_NOM"; comboDocumento.DataBind(); if (comboDocumento.Items.Count > 0) { comboDocumento.Enabled = true; comboDocumento_SelectedIndexChanged(comboDocumento, null); } else { comboDocumento.Enabled = false; comboDocumento.Items.Add(new ListItem("--Añadir Documento--", "")); } }