Hi there,
Could you please advise how can I make the input fields in the “Comments” and “Attachments” columns independent? I coded those input cells inside the for loop,but when the user select a new account, the comment cells and attachments will be overridden.
Please see the screenshot and coding below:
{% assign additional_items_range = additional_items_range | default:“1491,1492,1591,1592,2491,2492,2591,25923991,3992” %}
{% stripnewlines %}
|
|Account
|Comments
|Attachment
{% newline %}
|:—3%-----
|:----25%----
|:----70%----
|:—2%-----#{% ic %}{% endic %}+
{% newline %}
|{% input custom.additional_items.toSelect as:account_collection range:additional_items_range accounts_var:additional_items | currency_dc %}
{% newline %}
{% for additional in additional_items %}
|
|{% capture additional_account_link %}{% linkto additional %}{{ additional.original_number }} {{ additional.original_name }}{% endlinkto %}{% endcapture %}
{{ additional_account_link }}
{{ additional_account_name }}
| {% input custom.additional.toSelect as:text placeholder:‘Description’ %}
|{% input custom.account_file.toSelect as:file_collection %}
{% newline %}
{% endfor %}
{% endstripnewlines %}
Thank you!