I'm using ng2-smart-table component in my project and I found an issue that is blocking me.
I have a smart table (mode=inline) with 3 columns: id, column1 and column2. Id is not editable because until I call my backend and generate the row, I won't know the value so when I add a new row, the cell for ID remains empty.
I'm listening the emitter "onCreateConfirm", when it's triggered, I call my backend with a post request and wait for the response.
When I handle the response, I've been unable to find the way to update that cell in the row.
Has somebody faced the same issue? Is this flow possible at all or it is a limitation of the component?
Maybe I'm doing something wrong and I should not be following this flow at all and there is another way to do it.
Any help will be appreciated.