Avatar

Level 4

Hi,

I have a curious problem with repeating subforms.

My repeating subform looks something like this:

myRepeatingSubform

     someField

     aPositionedSubform

          myImage

          myRemoveButton (which is not filled)

Now when I say

_myRepeatingSubform.addInstance(true);

everything is fine. I get another line at the end and I get to see my image.

But when I say

_myRepeatingSubform.insertInstance(0);

or

_myRepeatingSubform.moveInstance(_myRepeatingSubform.count - 1, 0);

then the image disappears. The button is still there. But the image is not visible anymore.

Does anyone have an explanation for that?

Is it perhaps an error of some kind?

Uli