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
731
how to restrict column Editing??
posted

i want to allow only one column[0] to be editable column[1] , [2] want to restrict editing in these columns can any one guide which property will be used???

Parents
  • 28464
    posted

    Hello,

    This can be controlled via the AllowUpdate property of the column, e.g.

     <igtbl:UltraGridColumn BaseColumnName="ProductID" DataType="System.Int32" IsBound="True"
                            AllowUpdate="No" Key="ProductID">
                            <Header Caption="ProductID">
                                <RowLayoutColumnInfo OriginX="2" />
                            </Header>
                            <Footer>
                                <RowLayoutColumnInfo OriginX="2" />
                            </Footer>
                        </igtbl:UltraGridColumn>

Reply Children