New to Kendo UI for jQuery? Start a free 30-day trial

FormatLabel

configuration

Callback function that could be used to change the default format of the automatically generated labels.

Note: this callback takes effect only if the items option or items.label property are not specified and labels are being automatically generated.

formatLabel

Function
<form id="myForm"></form>

<script>
    $("#myForm").kendoForm({
        formData: {
            Name: "Ivan",
            ZipCode: 1000
        },
        formatLabel: function(field) {
            return field + ":";
        }
    });
</script>
Not finding the help you need?
Contact Support