Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
140
how to set field level editing modes
posted

Hi,

I have an xamDatagrid blinded to some binding list. I have added a checkbox column to the grid  in FieldLayoutInitialized event like this .

              Dim obj As New UnboundField()
            obj.DataType = GetType([Boolean])
            obj.Name = "Select"
            e.FieldLayout.Fields.Insert(0, obj)

 

I can make xamdatagrid   editable or readonly   like this

 XamDataGrid1.FieldSettings.AllowEdit=true/false

With this feature I can make  whole grid editable or readolnly .But I had a requirement to make  paricular columns editable or readonly  leaving checkbox column always editable. How this can be achieved.

Advanced thanks for your valuable advise.