c# - How to Add new rows programmatically to my WebDataGrid -
kindly let me know if possible add multiple row when clicking button event in infragistics webdatagrid.
thanks
datagrid.rows.add("value column1","value column2","value column3"); you can also...
datagrid.rows[rowindex].cells[celindex].value = "your value"; and that's it.
Comments
Post a Comment