Anyway if a field in SQL is defined as Decimal (5,2) then GroceryCRUD sets the maxlength to '5,2'...
E.g.
<input id="field-price_single_eur" name="price_single_eur" type="text" value="120.00" class="numeric" maxlength="5,2">
It would be nice if it set it to 5+2+1 (for the decimal place) e.g. maxlength="8"
Or am I doing it wrong?

Thanks!