'Set NULL date in Oracle APEX mobile

I have the following form for my APEX app

The user set dates on this form

On the computer version, the user can delete the date and leave the value NULL. But in the smartphone that doesn't happen. Is there an atribute or button I can set on APEX so that the user has the option to set a date NULL?

Just for context: this is a form to add a task, but an already added task can be put ON HOLD (not scheduled) to be dealt with later. That's why the user might want to take a task out of the schedule and plan it later.



Solution 1:[1]

I don't have any mobile applications, but - did you try one of the following:

  • create a button which - when pressed - runs a process which sets

    :P1_START_DATE := NULL;
    
  • create a button and its dynamic action that Clears the start date item

  • enable Quick picks for the date item and set label-value pair to

    • Label: No start date
    • Value: leave it empty

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Littlefoot