items.fieldTypeString
Specifies the JavaScript type of the field value. Used to determine the correct default editor when the model value is null. Accepted values are "string", "number", "boolean", and "date".
Example - set fieldType for a nullable property
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
model: {
size: null,
count: null,
name: "Laptop"
},
items: [
{ field: "size", fieldType: "string" },
{ field: "count", fieldType: "number" },
{ field: "name" }
]
});
</script>