I'm working on a windows forms app and there is a Janus GridEx component with 3 columns. I don't want users to change the values in the first two columns but I can't find the way to make readonly or allowedit false for the first two columns and third column editable.

I've tried changing the editmode but no luck either... anyone out there knows how?

link|improve this question

feedback

2 Answers

Have you tried:

column.EditType = Janus.Windows.GridEX.EditType.NoEdit;

?

link|improve this answer
Yes, I tried that as well – David Aleu Jun 3 '11 at 9:51
just it,try this – DeveloperX Jun 5 '11 at 17:58
feedback

If you change the column's Selectable property to false, the user will not be able to edit it. You can set this property in the designer or in code. Here is an example which locks down the id column:

GridEXColumn idColumn = gridEX1.RootTable.Columns["id"];
idColumn.Selectable = false;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.