A
|
acpan 1/28/2020 |
Show more lines of your codes will help |
J
|
jaffleck author 1/30/2020 |
Show more lines of your codes will help var artist_id = row.getFieldValue("artistid"); does not seems to be the cause. ACP nng |
A
|
acpan 1/30/2020 |
var artist_id = row.getFieldValue("artistid");
$record = $button->getCurrentRecord();
|
C
|
ckranichDevClub member 1/31/2020 |
my Noob halfcent: |
A
|
acpan 1/31/2020 |
@ckranich, I think you can also do so in point 2 above, in this case, you can avoid calling DB-API for every row. my Noob halfcent: row.getFieldValue("fieldname") => recently noticed that this only is successful if the field is actually visible/used in the grid if this field is in table but not in grid, it will fail. in this case I used DB-API to retrieve field with a select based on field that is in grid. |
C
|
ckranichDevClub member 2/1/2020 |
@ckranich, I think you can also do so in point 2 above, in this case, you can avoid calling DB-API for every row.
|
J
|
jaffleck author 2/6/2020 |
Many Thanks for advice, noted... (In this case I don't call each row but only execute once a custom button (Select Production Order for Production Line) is clicked)
|