messages.commands.detailsString
(default: "Toggle Info box")
Defines the title attribute for the details
command.
Example
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
messages: {
commands: {
details: "Show Property Details"
}
},
model: {
foo: "bar",
baz: 5
}
});
</script>
In this article