UltraWebGrid动态生成CheckBox


 1protected void UltraWebGrid1_InitializeRow(object sender, Infragistics.WebUI.UltraWebGrid.RowEventArgs e)
 2    {
 3        if (e.Row.Band.Index == 0)
 4        {
 5            string str = string.Empty;
 6            str = "<input id='chk" + e.Row.Index + "' type='checkbox' name='chkName" + e.Row.Index + " ' />";
 7            e.Row.Cells[0].Text = str;
 8        }

 9
10    }

11

你可能感兴趣的:(UltraWebGrid动态生成CheckBox)