Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

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;

Sun Certified Web component Developer,

Microsoft Certified Solution Developer .NET,

Software Engineer

  • *Experts*
Posted

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

"Being grown up isn't half as fun as growing up

These are the best days of our lives"

-The Ataris, In This Diary

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...