Data bind variable for inventory items name for invoice template?

Is the data bind variable for inventory items name for invoice template available now? If not, than when it will be available?

Added to the latest version (14.8.17). It’s available in variable called InventoryItemName

Usage

<table>
  <thead>
    <th>Item</th>
  </thead>
  <tbody data-bind="foreach: LineItems">
    <tr>
      <td data-bind="text: InventoryItemName"></td>
    </tr>
  </tbody>
</table>
2 Likes