navigatable Boolean
(default: false)
If set to true
the user could navigate the component using the keyboard navigation. By default keyboard navigation is disabled.
Example - enable keyboard navigation
<div id="configurator"></div>
<script>
$("#configurator").kendoPivotConfiguratorV2({
filterable: true,
navigatable: true,
dataSource: {
type: "xmla",
columns: [{ name: "[Date].[Calendar]", expand: true }, { name: "[Geography].[City]" } ],
rows: [{ name: "[Product].[Product]" }],
measures: ["[Measures].[Internet Sales Amount]"],
transport: {
connection: {
catalog: "Adventure Works DW 2008R2",
cube: "Adventure Works"
},
read: 'https://demos.telerik.com/olap/msmdpump.dll'
}
}
});
</script>
Check Keyboard navigation for a live demo.