3 Answers, 1 is accepted
0

Shinu
Top achievements
Rank 2
answered on 25 Feb 2011, 09:13 AM
Hi,
One suggestion is attaching GotFocus event to RadMaskedTextBox and setting calendar control's Visibility.
Also check the RadDateTimePicker control and see whether suits your need.
-Shinu.
One suggestion is attaching GotFocus event to RadMaskedTextBox and setting calendar control's Visibility.
private
void
DropoffDateTime_GotFocus(
object
sender, RoutedEventArgs e)
{
// Set Calendar Visibility property to "Visible"
}
Also check the RadDateTimePicker control and see whether suits your need.
-Shinu.
0
Hi ronald,
You can open the calendar when mouse down event happens. Check the code bellow:
Regards,
Kaloyan
the Telerik team
You can open the calendar when mouse down event happens. Check the code bellow:
radDatePicker.AddHandler(UIElement.MouseDownEvent,
new
MouseButtonEventHandler((radDatePicker_MouseDown)),
true
);
private
void
radDatePicker_MouseDown(
object
sender, MouseButtonEventArgs e)
{
radDatePicker.IsDropDownOpen =
true
;
}
Regards,
Kaloyan
the Telerik team
Registration for Q1 2011 What’s New Webinar Week is now open. Mark your calendar for the week starting March 21st and book your seat for a walk through all the exciting stuff we ship with the new release!
0
Hi ronald,
You can open the calendar when mouse down event appears. Check the code bellow:
Regards,
Kaloyan
the Telerik team
You can open the calendar when mouse down event appears. Check the code bellow:
radDatePicker.AddHandler(UIElement.MouseDownEvent,
new
MouseButtonEventHandler((radDatePicker_MouseDown)),
true
);
private
void
radDatePicker_MouseDown(
object
sender, MouseButtonEventArgs e)
{
radDatePicker.IsDropDownOpen =
true
;
}
Regards,
Kaloyan
the Telerik team
Registration for Q1 2011 What’s New Webinar Week is now open. Mark your calendar for the week starting March 21st and book your seat for a walk through all the exciting stuff we ship with the new release!