简体   繁体   中英

How to Add new rows programmatically to my WebDataGrid

kindly let me know if possible to add multiple row when clicking button event in infragistics webdatagrid.

thanks

DataGrid.Rows.Add("Value for Column1","Value for Column2","Value for Column3");

You can also...

DataGrid.Rows[RowIndex].Cells[CelIndex].Value = "Your Value";

And that's it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM