Inline editing doesn't work with masked inputs

Inline editing doesn't work with masked inputs

transloydtransloyd Posts: 10Questions: 3Answers: 0

Hi! Inline editing doesn't work with "Masked inputs" plugin. After editing nothing happens.
Field settings:

{
     name: 'loading_datetime',
     type: 'mask',
     mask: '00.00.0000 00:00',
     placeholder: '00.00.0000 00:00'
}

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 61,438Questions: 1Answers: 10,052 Site admin
    Answer ✓

    Hi,

    Thanks for letting me know about that. Add:

        ,canReturnSubmit: function ( conf, node ) {
            return true;
        }
    

    Into the plug-in object for the Mask library and that will allow it to start working as expected for inline editing.

    I'll publish the update on the site shortly.

    Regards,
    Allan

  • transloydtransloyd Posts: 10Questions: 3Answers: 0

    Thank you! It works!)

This discussion has been closed.