Hi
Here is what the Logfile says when I update a record:
====================================
Log started, 21/11/2016 12:11:56
====================================
DataProcessor object initialized
1479729346802_gr_id => 1479729346802
1479729346802_c0 => Fritzli
1479729346802_c1 => Langenauer
1479729346802_c2 => fritzli@chaschperli.
1479729346802_c3 => 5
1479729346802_c4 => Computer Software
1479729346802_!nativeeditor_status => updated
ids => 1479729346802
Row data [1479729346802]
contact_id => 1479729346802
fname => Fritzli
lname => Langenauer
email => fritzli@chaschperli.
category => 5
cat_name => Computer Software
!nativeeditor_status => updated
UPDATE contacts LEFT JOIN categories ON contacts.category = categories.cat_id SET fname='Fritzli', lname='Langenauer', email='fritzli@chaschperli.', category=5 WHERE contact_id=1479729346802
Edit operation finished
0 => action:updated; sid:1479729346802; tid:1479729346802;
Done in 0.0010159015655518s
No error but when I look into the Database then the record has not changed.
But this works:
UPDATE contacts LEFT JOIN categories ON contacts.category = categories.cat_id SET fname=‘Fritzli’, lname=‘Langenauer’, email=‘fritzli@chaschperli.’, category=5 WHERE contact_id=16
Any idea whats going wrong ?
Is the contact_id value to high (it’s automatically generate by “rowId=contactsGrid.uid();”) ?
Kind regards
Alain