I am trying to add a TextEdit to a column on a DevExpress GridView at runtime, this is what I have got (copied pretty much from some auto-generated designer code).
DevExpress.XtraEditors.Repository.RepositoryItemTextEdit commentTextEdit
= new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
gvwEnquiryList.Columns["Comments"].ColumnEdit = commentTextEdit;
ctlEnquiryList.RepositoryItems.Add(commentTextEdit);
What have I missed? (cos it doesn't work, "Comments" is still just a normal column)