in all my tables, i have a flag field to manage the visibility of a record :
1 visible
0 hidden
I use the radio control in the edit page to manage it.
Once the user pass the falg from visible to hidden, i changed the record label like that in the script function Row_Updating :
if ($rsold[“edt_visible”]==1 && $rsnew[“edt_visible”]==0) $rsnew[“edt_lib”]=$rsnew[“edt_lib”]." (deleted!)";
in basic edit view, it runs fine and very well !
but in multi-update page, even when i do not check the field in the multi-update page, phpmaker put a 0 in the rsnew ! so the query from my script function Row_Updating is running and my field is rename while the rsnew did not change!
morever, even when i uncheck the visibility field from the listview (not display in multi update), it is appening.