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 03:57 PM
This is also something I would like to know. Does anyone have a clue?
NANaveenFebruary 17, 2005 07:32 AM
>
>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 20, 2005 11:45 PM
Hi
Just set DataGrid1.ReadOnly=true
PRprasannaJanuary 1, 2006 10:25 PM
>
>How can i Prevent a datagrid To add a new record.
If you are not editing in the grid then
datagrid1.readonly = true