Reputation: 254
In .net grid view Control Column we have a Property called "ColumnType" where we can specify column type which you want
Any body please help me how to do this in DevExpress Extra Grid Control
Thanks in advance
Upvotes: 2
Views: 14630
Reputation: 31
Dim checkEditColumn = New DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit()
checkEditColumn .CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Style1
checkEditColumn .Name = "test"
GridView1.Columns("columnName").ColumnEdit = checkEditColumn
Upvotes: 1
Reputation: 11376
A similar effect can be achieved by setting the column's ColumnEdit property to an instance of the RepositoryItemCheckEdit. For more details, please refer to the Assigning Editors to Columns and Card Fields topic.
Upvotes: 1