Inline edit in GroupTable

I want enable inline edit in GroupTable on browse window. For this I have set GroupTable editable tag as true and specific columns editable tag as true. This makes column editable and I can update specific columns but can’t save as there is no Save action on window.

Think I am missing some configuration to get save action on window. Do I have to write custom code to persist data? Appreciate any pointers.

Thanks

1 Like

Hi,
enabling editing mode for a table does not lead to an adding some button for saving entities, so yes, you should save data yourself. For example, you can do the following:

getDsContext().commit()

Best regards,
Daniil.

Thanks Daniil