Fill in colour for repeating subforms


i have repeating subform max count 5 subforms.

is possible 4th , 5th repeating rows have fill colour?

 

here script use add instance button:

 

_item.addinstance();

 

 

thank you

here script use remove instance button:

 

if

 

(_item.count > 1)

_item.removeinstance(this.parent.index);

 

 

 

item row in table.

 

hi,

 

first off, not inclined name object/subform "item". close reserved word "item".

 

also in addinstance() method, should pass parameter. default true.

 

one route use layout:ready event of repeating subform. not efficient, layout:ready event fires user interacts form. deal situations rows added , removed.

 

if (this.parent.index >= 3) {      this.fillcolor = "255,129,129";  } 

 

this might give start,

 

niall



More discussions in LiveCycle Designer


adobe

Comments