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

c# - How Configure Devart dotConnect for SQLite Code First? -

c++ - Clear the memory after returning a vector in a function -

erlang - Saving a digraph to mnesia is hindered because of its side-effects -