The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
ADAdministrator Syncfusion Team February 9, 2005 08:57 PM UTC
This is also something I would like to know. Does anyone have a clue?
NANaveenFebruary 17, 2005 12:32 PM UTC
>
>How can i Prevent a datagrid To add a new record.
you can prevent a datagrid from adding a new record.
for that you have to attach a DataTable to the Datagrid.
eg: - datagrid.datasource = dt;
After which you have to create a dataview for the datatable.
eg: dataview dv = dt.defaultview;
dv.allownew = false;
This will do the job.
ADAdministrator Syncfusion Team December 21, 2005 04:45 AM UTC
Hi
Just set DataGrid1.ReadOnly=true
PRprasannaJanuary 2, 2006 03:25 AM UTC
>
>How can i Prevent a datagrid To add a new record.
If you are not editing in the grid then
datagrid1.readonly = true