protected void UltraWebGrid1_InitializeRow(object sender, RowEventArgs e)
        {
            if (!e.Row.Cells.FromKey("SENDSTATUS").Text.Equals("编辑"))
            {
                (((UltraWebGrid1.Bands[0].Columns[0] as TemplatedColumn).CellItems[e.Row.Index] as CellItem).FindControl("CheckBoxName") as HtmlInputCheckBox).Attributes.Add("disabled", "true");
            }
        }

相关文章:

  • 2022-01-17
  • 2021-06-29
  • 2021-06-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-03
猜你喜欢
  • 2022-12-23
  • 2021-12-05
  • 2022-12-23
  • 2021-05-20
  • 2021-12-07
  • 2022-12-23
  • 2022-01-14
相关资源
相似解决方案