Hello,
First off, apologies if this question has already been asked/answered, but I wasn't able to find a thread that had my specific problem.
Background:
I have a table that will dynamically grow when the User presses an "+" button. In my table I have a drop down box that auto populates a text box based on a Users specific selection. This is the code that I used:
form1.page1.subform1.Table1.Rows.ItemDescription::exit - (JavaScript, client)
form1.page1.subform1.Table1.Rows.WarehouseCode.rawValue = form1.page1.subform1.Table1.Rows.ItemDescription.rawValue;
The above code works well however, it only works for the first row and not any subsequent rows that are added when the User selects the "+" button.
Question:
What script am I missing that will allow the "WarehouseCode" value to auto populate when a User adds more rows to the table?
Much appreciated! This community has already been so helpful to me especially when I am not a programmer or expert by any means