qooxdoo - Table auto reset after update -
I have very little trouble updating table cells in the table:
One of my cells Updating after clicking on the button (the data is sent to DB, after updating the IB after receiving the value from DB) everything is working fine, but:
< Code> rows.push (qx.lang.Object.getValues data [i])); TableDM.setData (rows); After that, the table is resetting its settings, for example if one of my columns is moved after resetting it to the default value.Is there any possibility of closing that reset? Maybe everything just happens in another way?
If you use the
qx.ui.table model Simple
setdata method has a second boolean parametercleanening
.rows.push (qx.lang.Object.getValues (data [i])); TableDM.setData (rows, incorrect);
Comments
Post a Comment