goodmorningsky Posted December 27, 2003 Posted December 27, 2003 I bound a table to DataGrid. I want user only to modifiy data only except Certain column(most time it is Primary key column: but, it should be shown) without allowing Adding, Deleting. How can I do this? I just bound like following.. aDataGrid.DataSource = myDataTable.DefaultView; Quote Sun Certified Web component Developer, Microsoft Certified Solution Developer .NET, Software Engineer
*Experts* Bucky Posted December 28, 2003 *Experts* Posted December 28, 2003 Try this for disabling deletion and adding of new rows: DataView view = myDataTable.DefaultView view.AllowNew = False view.AllowDelete = False aDataGrid.DataSource = view As for the primary column's editability, just set the ReadOnly property to true: myDataTable.Columns(0).ReadOnly = True ' Here, 0 is the column index Quote "Being grown up isn't half as fun as growing up These are the best days of our lives" -The Ataris, In This Diary
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.