messages.fieldMenu.moveNext String
(default: "Move as Next")
The text of the move as next action in the menu.
Example
<div id="configurator"></div>
<script>
$("#configurator").kendoPivotConfiguratorV2({
filterable: true,
messages: {
fieldMenu: {
moveNext: "Move as Next"
}
},
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>