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
130
How to set coulmn(s) as noneditable
posted

I just want to set one or two colums as noneditable (Primary keys) so user won't be able to change the value of primary key

Thanks

Mukesh

Parents
No Data
Reply
  • 9836
    Verified Answer
    posted

    Hi Mukesh,

    You can set FieldSettings.AllowEdit property to false for each of the Fields you need to be non-editable e.g.

    <igDP:Field Name="FirstName">

    <igDP:Field.Settings>

    <igDP:FieldSettings AllowEdit="False"/>

    </igDP:Field.Settings>

    </igDP:Field>

     

Children
No Data