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???
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>
This property is covered in the documentation, but doesn't appear to exist in version 2008 volume 3. What am I missing?