I have a Janus GridEX that loaded from DataTable in SQL database, It have 8 column in my Grid. Now I want to add check box column list and ability to select multiple rows. I'll be appreciate if some one help!
Asked
Active
Viewed 3,771 times
2 Answers
1
This is VB.NET code. Imports Janus.Windows.GridEX
grdEmail.RootTable.Columns("receive_email").ColumnType = ColumnType.CheckBox
grdEmail.RootTable.Columns("receive_email").EditType = EditType.CheckBox
grdEmail.RootTable.Columns("receive_email").CheckBoxTrueValue = "Yes"
grdEmail.RootTable.Columns("receive_email").CheckBoxFalseValue = "No"

Dominic Isaia
- 127
- 1
- 9
0
Following this example Janus GridEX Example you can do like this:
column.EditType = EditType.CheckBox;
To enhance the multiple selection, try this way:
gridEX1.SelectionMode = SelectionMode.MultipleSelection;

Stefano Bafaro
- 915
- 10
- 20