Check if Multi-Update

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
konfuzion
User
Posts: 378

Check if Multi-Update

Post by konfuzion »

Is there a way for row_updating/row_updated to detect if the update is Multi-Update or not? I need to do something like this:

Table-Specific > Common > Row_Updating or Row_Updated

if ($is_Multi_Update)
{
	// do some stuff
}

mobhar
User
Posts: 11702

Post by mobhar »

Try:

if ($this->CurrentAction == "update") {
   // ...
}

Post Reply