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

Popular posts from this blog

mongodb - Struggling to get ordered results from the last retrieved article, given array of elements to search in -

c# - Pausing a storyboard on TabItem mouse over -

c# - Attribute value in root node of xml Linq to XML -