Reuben,
I thought about setActionActive() but dialog.setActionActive("insert", TRUE) gives a runtime error -8089 Action "insert" not found in dialog. I get the same error for "insert row". I did find a solution. If I start the INPUT ARRAY this way:
input array progarrayname without defaults from screenarrayname
attribute (insert row = false)
on action toggle
dialog.setActionActive("insert", TRUE)
I will get error -8089. But this works:
input array progarrayname without defaults from screenarrayname
attribute (insert row = true)
on action toggle
dialog.setActionActive("insert", FALSE)
In other words, INSERT ROW must be TRUE in the INPUT ARRAY ATTRIBUTE for setActionActive() to see it elsewhere in the INPUT ARRAY. Is this expected behavior or a bug in Genero?
David