Hello
Some questions, I will be very grateful for any help:
1. How make
drill down in window
2. Problem
with rename http://screencast.com/t/TH7dkhdDV8Xe
3. Problem
with filtration http://screencast.com/t/gGdrgyGkKYl
@(Html.Kendo().PivotConfigurator().Name("configurator").Height(770).HtmlAttributes(new { @class = "pivot-configurator" }).Filterable(true).Sortable())
@(Html.Kendo().PivotGrid<CertificateDeath>().Name("CertificateDeathPivotGrid").Sortable().Configurator("#configurator")
.ColumnWidth(120).Height(770).HtmlAttributes(new { @class = "pivot-grid" })
.Excel(excel => excel.FileName("Свидетельство_о_смерти.xlsx").Filterable(true).ProxyURL(Url.Action("ExcelExport", "CertificateDeath")))
.DataSource(dataSource => dataSource
.Ajax()
.Transport(transport => transport.Read("GetList", "CertificateDeath"))
.Schema(schema => schema
.Model(m => m.Field("FIO", typeof(string)).From("People.NameShort"))
.Cube(cube => cube
.Dimensions(dimensions =>
{
dimensions.Add(model => model.IssuanceDate).Caption("Date issuance");
dimensions.Add(model => model.Status).Caption("All status");
})
.Measures(measures => measures.Add("Count").Field(model => model.Id).AggregateName("count"))
))
.Columns(columns => { columns.Add("Status").Expand(true); }).Events(e => e.Error("onError"))
//.Rows(rows => rows.Add("ContactTitle").Expand(true))
.Measures(measures => measures.Values("Count"))
).Filterable(true)
.Pdf(pdf => pdf.FileName("Свидетельство_о_смерти.pdf").ProxyURL(Url.Action("PdfExport", "CertificateDeath"))
))