Intersoft Support Center

Select Quick Date using Client-side API

WebInput provides method to enable user to select quick date from client-side.

This topic will show you how to select quick date using client-side API.

To select quick date using client-side API

  1. Create a HTML button control.
  2. Create QuickDateSelectSingle() function in client-side to enable quick date selection.
    C# Copy Code
    function QuickDateSelectSingle()
    {
       var input = ISGetObject("WebInput1");
       input.DateTimeEditor.PopUpQuickSelectDate("btnSingle");
    }

  3. Run the project.
Previous Next