/// <summary>
        /// Handles the element onclick event.
        /// </summary>
        /// <returns>A task that represents the asynchronous operation.</returns>
        protected async Task OnClickHandler(MouseEventArgs e)
        {
            if (Disabled || ReadOnly)
            {
                return;
            }

            await JSRunner.ActivateTimePicker(ElementRef, ElementId, Parsers.InternalTimeFormat);
        }
Example #2
0
 protected async Task OnClickHandler(MouseEventArgs e)
 {
     await JSRunner.ActivateTimePicker(ElementId, Parsers.InternalTimeFormat);
 }
Example #3
0
 protected void OnClickHandler(MouseEventArgs e)
 {
     JSRunner.ActivateTimePicker(ElementId, Utils.Parsers.InternalTimeFormat);
 }