-
Is there a way to concatenate a number (dynamic created id from dynamic created inputs) to I'm creating new inputs dynamically inside an array and each input will have its own To do that, I'm using
In registerTrip() function I'm trying to add each input value to an array concatenating counter number to I'm not able to concatenate them even if I convert var If I do Is this the correct way to do that or should I do it differently? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Issue solved changing:
to:
|
Beta Was this translation helpful? Give feedback.
Issue solved changing:
trip_start_date = data.trip_start_date + s;
to:
trip_start_date = data["trip_start_date" + i.toString()];