cancel
Showing results for 
Search instead for 
Did you mean: 

merging column cells dynamically

Former Member
0 Kudos

Hi

I have a requirement where I need to merge cells of a column based on some condition. I am aware how to dynamically merge row cells but can somebody suggest me how to do this?

How I can read previous row value in JavaScript.

Thanks

Saruchi

Accepted Solutions (0)

Answers (1)

Answers (1)

prajeshdesai
Contributor
0 Kudos

to mearge cells,


xfa.resolveNode("<path>").colSpan = "2";  

to read previous row value,


var INDX = this.index -1;

LV_DATA = xfa.resolveNode("$record.IM_TEST.DATA[" + INDX + "].FIELDNAME").value;

also go through

Hope this helps.