Make the Include Fields Window of the PivotGrid Modal
Environment
Product | Progress® Kendo UI® PivotGrid for jQuery |
Operating System | Windows 10 64bit |
Visual Studio Version | Visual Studio 2017 |
Preferred Language | JavaScript |
Description
How can I render the Fields to include filter window of the PivotGrid as a modal dialog?
Solution
The following example demonstrates how to access the Fields to include filter window and render it as a modal dialog in a PivotGrid widget.
<div id="example">
<div id="pivotgrid"></div>
<script>
$(document).ready(function () {
var pivotgrid = $("#pivotgrid").kendoPivotGrid({
filterable: true,
columnWidth: 200,
height: 580,
dataSource: {
type: "xmla",
columns: [{ name: "[Date].[Calendar]", expand: true }, { name: "[Product].[Category]" } ],
rows: [{ name: "[Geography].[City]" }],
measures: ["[Measures].[Internet Sales Amount]"],
transport: {
connection: {
catalog: "Adventure Works DW 2008R2",
cube: "Adventure Works"
},
read: "https://demos.telerik.com/olap/msmdpump.dll",
parameterMap: function(options, type) {
var query = kendo.data.transports.xmla.fn.options.parameterMap(options, type);
//modify the query here if needed
return query;
}
},
schema: {
type: "xmla"
},
error: function (e) {
alert("error: " + kendo.stringify(e.errors[0]));
}
}
}).data("kendoPivotGrid");
//wire 'Include fields' open
$("[data-role=pivotsettingtarget]").each(function(_, setting) {
var fieldMenu = $(setting).data("kendoPivotSettingTarget").fieldMenu;
if (fieldMenu) {
fieldMenu.includeWindow.bind("open", function(e) {
e.sender.setOptions({ modal: true }); //set modality to `true`
});
}
});
});
</script>
</div>