This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

UI Extensibility - html input date datetime time

Former Member
Former Member
Using UI Extensibility Framework, I would like to show some input (type date or datetime or time) in my HTML page like this :
<input type="date" name="Date" value="20.01.2018"/>
<input type="time" name="Heure" value="08:00" />

But actually, the popup in mfiles show only the input like it was a "text" type (unlike a web browser).
Is there a solution to have this control in a Mfiles popup ?
  • Former Member
    Former Member
    I found a solution. With simple tool in JQuery we can bypass this problem :

    Replace this :


    By this :



    And use this script code :
    $( function() {
    $( "#datepicker" ).datepicker();
    } );

    Actually it's working with the jquery-1.12.4.js and jquery-ui.js. An advice : download the scripts in the development folder. I guess it's better to work with local resources.