@Christian-Me
In one of your other posts (Now closed) you specified this example.
function(cell){
this.send({
ui_control:{callback:'cellEdited'},
payload:cell.getValue(),
oldValue:cell.getOldValue(),
field:cell.getColumn().getField(),
id:cell.getRow().getCell('id').getValue()
});
}
I cannot get that last line to work
id:cell.getRow().getCell('id').getValue()
if I change it to 'name' - like this:
id:cell.getRow().getCell('name').getValue()
it then works fine and returns the value of that name cell.
I have added id:1 etc at the beginning of the data rows definition.
{id:1,"name":"MEQ0451495","room":"Bathroom","SET_TEMPERATURE-value":22 ......................
Is the id field treated differently than a 'regular' field?