Some of the Esri out of the box Widgets are using the jimu.js/dijit/SimpleTable for creating a Table.
To make my Widget responsive i thought using the SimpleTable is the best method for now. So i don't have to care about the styling and can use all the features the SimpleTable comes with.
It's easys to create a new table and fill it with data, but the eventhandling is not 100% working like excepted.
If you want a user to be able to edit text within the table you can set the Parameter 'editable: true' for a field. But there is no event that notifies if the user has edited a field. The event 'row-edit' is not fired in this case. It looks like that this event is only fired when the row is updated programatically.