This is a migrated thread and some comments may be shown as answers.

How to handle TileGroupElement Click event

3 Answers 79 Views
Panorama
This is a migrated thread and some comments may be shown as answers.
OD
Top achievements
Rank 1
OD asked on 01 Feb 2017, 01:44 PM

 Hello,

I'm trying to handle the TileGroupElement.Click event but it is a mystery to me.

Thanks in advance for helping me.

Best regards.

3 Answers, 1 is accepted

Sort by
0
OD
Top achievements
Rank 1
answered on 01 Feb 2017, 02:29 PM
I'm Using VB.Net with Radcontrols 2016 Q3 SP1 from winforms
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 01 Feb 2017, 03:17 PM
Hello Jean-Marc,

Thank you for writing.  

In order to force the TileGroupElement.Click event to be fired, it is necessary to set the ShouldHandleMouseInput property to true and the NotifyParentOnMouseInput property to false
Me.TileGroupElement1.ShouldHandleMouseInput = True
Me.TileGroupElement1.NotifyParentOnMouseInput = False
AddHandler Me.TileGroupElement1.Click, AddressOf TileGroupElement_Click
Private Sub TileGroupElement_Click(sender As Object, e As EventArgs)
    Console.WriteLine("click")
End Sub

I hope this information helps. Should you have further questions I would be glad to help.

Regards,
Dess
Telerik by Progress
Try our brand new, jQuery-free Angular 2 components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
0
OD
Top achievements
Rank 1
answered on 01 Feb 2017, 03:27 PM

Hello,

Thank you Dess.

Everything works fine.

Tags
Panorama
Asked by
OD
Top achievements
Rank 1
Answers by
OD
Top achievements
Rank 1
Dess | Tech Support Engineer, Principal
Telerik team
Share this question
or