在UltraWebGrid单元格中绑定WebNumericEdit或其它可编辑控件

先在界面上放一个 WebNumericEdit

 

protected void UltraWebGrid1_InitializeRow(object sender, Infragistics.WebUI.UltraWebGrid.RowEventArgs e)
    {
        Infragistics.WebUI.UltraWebGrid.UltraGridColumn col = this.UltraWebGrid1.Columns.FromKey("num");
        col.AllowUpdate = Infragistics.WebUI.UltraWebGrid.AllowUpdate.Yes;
        col.Type = Infragistics.WebUI.UltraWebGrid.ColumnType.Custom;
        UltraWebGrid1.Columns.FromKey("num").EditorControlID = "WebNumericEdit1";
    }

 

如此编辑单元格时显示的就是WebNumericEdit了,还有就是WebNumericEdit不用把visable设成false,绑定以后会自动不可见

你可能感兴趣的:(object)