Grid Inserted

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

Grid Inserted

Post by nabilahasna »

Hai

I Try to put this script on table specific->common->grid inserted

// Grid Inserted event
function Grid_Inserted($rsnew)
{
    $id=$this->id_good->CurrentValue;
    $data1 = $rsnew["amount"];
    ExecuteUpdate("UPDATE good SET stock= '$data1' where id_good=".$this->id_good->CurrentValue);
    $this->setSuccessMessage("Update success.....");
}

but stock wont change after record inserted
any advice?

Thanks


mobhar
User
Posts: 11736

Post by mobhar »

Try to use $rsnew["id_good"] instead of $this->id_good->CurrentValue.


Post Reply