cancel
Showing results for 
Search instead for 
Did you mean: 

Disable MatrixColumnTitle

Former Member
0 Kudos

Hey,

I got a small question for you guys,

How to disable a Column Select, but still be able to select a Row?

Thanks in Advance,

Gr, Jeroen

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Dont allow click on matrix header. But there is a problem with user renaming the caption of header (because you eliminate the click on header). Code is

If pVal.ItemUID = "matrix" And pVal.EventType = SAPbouiCOM.BoEventTypes.et_CLICK And pVal.Before_Action = True Then

If pVal.Row = 0 Then

BubbleEvent = False

End If

End If

Former Member
0 Kudos

Thanks Petr, that helped, I was already seeking in the right direction, but I used et_ITEM_PRESSED as event... changing it to your proposal.. and it worked!

Answers (1)

Answers (1)

Former Member
0 Kudos

ON that particular col click plz click another colum.

On the Got focus of ur col click the other col.

Hope it helps,

Vasu Natari.