I am using x-editable with download
I have the following html field defined
<div class="form-group">
<label class="col-sm-4">Service Charges(%)</label>
<div class="col-sm-6 hoverEdit">
<a class="editableAccount" id="serviceTax"></a>
</div>
</div>
I have the following script specific for editing a field
$('.editableAccount').editable({
type : 'number',
title : 'Enter New Value',
success : function(response, newValue) {
updateAccount(this.id, newValue);
}
});
Now when I try to edit the field and enter decimal values, I get this

I want to make this field editable so that I can enter decimal values. I do not see any help in the documentation. Someone please help me here, I'm pretty new to html and javascript.
source
share