0

I have the following tag:

<span editable-number="prod.qty_return" e-max="prod.Cantidad" e-min="0" e-name="qty_return" e-form="rowform" e-required>{{ prod.qty_return }}</span>

prod.Cantidad is an integer, but I don't know why it isn't being accepted as the maximum value of the number, can someone point out my mistake? Thanks in advance.

Marilyn García
  • 105
  • 1
  • 13

1 Answers1

1

I figured out the solution I just needed to add {{}} as if I was displaying a variable value.

<span editable-number="prod.qty_return" e-max="{{prod.Cantidad}}" e-min="0" e-name="qty_return" e-form="rowform" e-required>{{ prod.qty_return }}</span>
Marilyn García
  • 105
  • 1
  • 13