Hi,
I need a way to know which column the current item in ItemCreated is part of.
Essentially, I want to be able to do this:
Where CurrentColumnUniqueName is a variable containing the current column unique name somehow.
Is there any way to do this?
Thanks
Daniel
I need a way to know which column the current item in ItemCreated is part of.
Essentially, I want to be able to do this:
Dim dctLocked as Dictionary(Of String, Boolean)
.
.
.
CType(e.Item, GridDataItem).Enabled = dctLocked(CurrentColumnUniqueName)
Where CurrentColumnUniqueName is a variable containing the current column unique name somehow.
Is there any way to do this?
Thanks
Daniel