Public forms datatable edition on mobile without popup

I created a public forms with a datatable that is used by mobile users.
I want the users to enter numeric values directly in one column of the datatable but unfortunately on mobile it opens a popup to enter the value.
This is not user-friendly when we need to enter quickly several values.

Is there a way not to open the popup and enter directly values in datatable on mobile ?

Dear @WilliamIBSA,
Please, try the following:

fd.rendered(() => {
    const dt = fd.control('DataTable1');
    dt.ready(() => {
        dt.widgetOptions = { 
            editable: {
                mode: 'incell'
            }
        };
    });
});
1 Like

Works perfectly, thanks !