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 tha...