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

Masked Edit Box mouse Up event not firing inside control

2 Answers 67 Views
MaskedEditBox
This is a migrated thread and some comments may be shown as answers.
Mohammed
Top achievements
Rank 1
Mohammed asked on 04 Jul 2017, 03:10 PM

Hi,

 

The mouse up, double click and, mouse down events do not fire inside the radmaskededit box control. They only fire when clicking on the edge of the control. The events work fine for the regular masked edit box.

 

Please advise.

 

Regards

Mohammed

2 Answers, 1 is accepted

Sort by
0
Dimitar
Telerik team
answered on 05 Jul 2017, 05:38 AM
Hello Mohammed,

Use the events of the TextBoxItem:
public Form1()
{
    InitializeComponent();
    radMaskedEditBox1.MaskedEditBoxElement.TextBoxItem.MouseDown += TextBoxItem_MouseDown;
}
 
private void TextBoxItem_MouseDown(object sender, MouseEventArgs e)
{
   
}

I hope this will be useful. 

Regards,
Dimitar
Progress Telerik
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
Mohammed
Top achievements
Rank 1
answered on 01 Aug 2017, 03:52 PM
Thank you
Tags
MaskedEditBox
Asked by
Mohammed
Top achievements
Rank 1
Answers by
Dimitar
Telerik team
Mohammed
Top achievements
Rank 1
Share this question
or