How to display the editable text box field on datagrid always.

0
Column Good Qty & Loss Qty can edit with the editable text box.   When clicking on the field: The editable text box will display like this. But I want the editable text box to display always without needing to click first. How can I do that? Thank you.
asked
2 answers
4

Hi Nattapong Nuchmuang,
You cannot use a DataGrid for this. You could Try Template Grid/List View and add data Widgets.

 

answered
0

The form elements are loaded upon clicking the fields so they are not already available in the DOM.

You could style the fields in the columns to look like input fields (so you would have the visual hint that they are editable) but the actual input element is loaded after clicking the cell in the data grid. This might be enough for your use case?

answered