Repeated Form - what am I doing wrong?

I have a form that is repeated inside a table.

The table creates a list of links and should display

  1. the Name of the link
  2. a text area where the user can edit the name of the link.

But, I can’t get the text area to even show up! It’s like it’s not there.

Here’s the code:

<table class="table table-striped">
  <tbody is="dmx-repeat" dmx-generator="bs5table" dmx-bind:repeat="sc_links1.data.query" id="tableRepeat1">
<tr>
  <td dmx-text="Link_Name">
<form id="id_formEditLinkName" method="post" dmx-bind:name="'LinkName'+Link_ID"><input id="id_text_editLinkName" name="name_text_editLinkName" type="text" class="id_formEditLinkName.control" required="" dmx-bind:value="Link_Name"></form>
</td>

</tr>
  </tbody>
</table>

And an image of the user area:
image

And how the code appears in the user’s browser:

<table class="table table-striped">
  <tbody is="dmx-repeat" dmx-generator="bs5table" dmx-bind:repeat="sc_links1.data.query" id="tableRepeat1">
    <tr>
      <td dmx-text="Link_Name">
    <form id="id_formEditLinkName" method="post" dmx-bind:name="'LinkName'+Link_ID"><input id="id_text_editLinkName" name="name_text_editLinkName" type="text" class="id_formEditLinkName.control" required="" dmx-bind:value="Link_Name"></form>
    </td>

    </tr>
  </tbody>
</table>
Community Page
Last updated: