New to Telerik UI for Xamarin? Download free 30-day trial

Commands

DateTimePicker Commands

DateTime Picker for Xamarin exposes the following commands you can use to programmatically manipulate displaying the popup as well as clearing the selected time:

  • ToggleCommand(ICommand): Allows you to show/hide the popup used for selecting a date value.
  • ClearCommand(ICommand): Allows you to clear the displayed date/time.

Example for ToggleCommand and ClearCommand

<StackLayout>
    <Button Text="Toggle Command" Command="{Binding Source={x:Reference dateTimePicker}, Path=ToggleCommand}"/>
    <Button Text="Clear Command" Command="{Binding Source={x:Reference dateTimePicker}, Path=ClearCommand}"/>
    <telerikInput:RadDateTimePicker x:Name="dateTimePicker" />
</StackLayout>

also you need to add the following namespace:

xmlns:telerikInput="clr-namespace:Telerik.XamarinForms.Input;assembly=Telerik.XamarinForms.Input"

PopupSelector Commands

Through the popup users can pick a date. The date/time value should be confirmed or rejected through the OK and Cancel buttons placed on the popup.

DateTimePicker allows you to add a custom logic for the Accept and Cancel commands which are executed when OK and Cancel buttons, respectively, are pressed.

  • AcceptCommand(ICommand): Defines the command which confirms the current selection of the picker and closes the popup. AcceptCommandParameter can be used to pass a parameter to the command execute method.
  • CancelCommand(ICommand): Defines the command which rejects the current selection of the picker and closes the popup. CancelCommandParameter can be used to pass a parameter to the command execute method.

The Accept and Cancel commands can be applied using the SelectorSettings property of RadDateTimePicker. In addition, you can pass command parameters through the AcceptCommandParameter and CancelCommandParameter properties of the DateTimePicker SelectorSettings.

Here is a quick example on how they could be set:

Example for AcceptCommand and CancelCommand

<telerikInput:RadDateTimePicker x:Name="dateTimePicker">
    <telerikInput:RadDateTimePicker.SelectorSettings>
        <telerikInput:PickerPopupSelectorSettings AcceptCommand="{Binding Accept}" 
                                                      AcceptCommandParameter="{Binding Date, Source={x:Reference dateTimePicker}}"
                                                      CancelCommand="{Binding Cancel}"
                                                      CancelCommandParameter="{Binding Date, Source={x:Reference dateTimePicker}}"/>
        </telerikInput:RadDateTimePicker.SelectorSettings>
    <telerikInput:RadDateTimePicker.BindingContext>
        <local:ViewModel/>
    </telerikInput:RadDateTimePicker.BindingContext>
</telerikInput:RadDateTimePicker>

and the ViewModel

public class ViewModel
{
    public ICommand Accept { get; set; }
    public ICommand Cancel { get; set; }

    public ViewModel()
    {
        this.Accept = new Command(this.OnAccept);
        this.Cancel = new Command(this.OnCancel);
    }

    private void OnAccept(object param)
    {
        Application.Current.MainPage.DisplayAlert("Date selected", String.Format("New Date: {0:g}", (DateTime)param), "OK");
        // implement your custom logic here
    }

    private void OnCancel(object param)
    {
        var message = param != null ? String.Format("Current date: {0:g}", (DateTime)param) : "Currently no date is selected";
        Application.Current.MainPage.DisplayAlert("Date Selection Canceled", message, "OK");
        // implement your custom logic here
    }
}

also you need to add the following namespace:

xmlns:telerikInput="clr-namespace:Telerik.XamarinForms.Input;assembly=Telerik.XamarinForms.Input"

See Also

In this article