|
|
Source code |
1 2 3 4 5 6 7 |
Select Case col
Case 3
JBGrid.CellEditor.Component = JBComboBox
JBGrid.CellEditor.JBComboBox.ComboList = "Stock|Super Stock|Masters"
Case 4 'Active True/False
JBGrid.CellEditor.Component = JBCheckBox
End Select
|
This post has been edited 1 times, last edit by "indyglassman" (May 9th 2014, 5:45pm) with the following reason: Additional info
This post has been edited 3 times, last edit by "indyglassman" (May 10th 2014, 4:51am)
|
|
Jabaco Source |
1 2 3 4 |
Public Sub JBGrid1_AfterCellEdit(row As Integer, col As Integer) JBGrid1.ColWidth(3) = 100 Text1.AppendText "HitTest: AfterCellEdit " & JBGrid1.Row & "/" & JBGrid1.Col & vbCrLf End Sub |