I have a text that is a combination of values separated with commas "," and I want to split it and fill some column inside a table with those values.
I tried this code in the indexChange event of the table row:
var raw = this.EXTKD.rawValue.split(',');
this.EXTKD.rawValue = raw[this.index];
knowing that EXTKD is the name of the cell that I want to fill with the value, and it is intially filled with the whole text that I want to split.
when I try the above code only the first row gets filled.