Search code examples
c#winformsjanus

Janus Grid .NET C# Make cell edit by user


I have a problem with Janus Grid. I am trying to make cell of the one column to be edit so user can change value in particular cell. I try:

this.myJanusGrid.RootTable.Columns[0].EditType = Janus.Windows.GridEX.EditType.TextBox

and

this.myJanusGrid.RootTable.Columns[0].Selectable=true

None of these two attempt were successful.

Thank's in advance for any help and suggestion!


Solution

  • Use this:

    this.myJanusGrid.RootTable.AllowEdit =  Janus.Web.GridEX.InheritableBoolean.True;