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

textbox and calendar

3 Answers 82 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
ronald
Top achievements
Rank 1
ronald asked on 22 Feb 2011, 08:38 PM
Hi,

I need to display a calender while the user focus on the textbox. How can I achieve this?

3 Answers, 1 is accepted

Sort by
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.

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
Kaloyan
Telerik team
answered on 25 Feb 2011, 09:32 AM
Hi ronald,

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
Kaloyan
Telerik team
answered on 25 Feb 2011, 09:32 AM
Hi ronald,

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!
Tags
Calendar
Asked by
ronald
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Kaloyan
Telerik team
Share this question
or